_array_admin_key_form['script'] = $this->get_prefix().'option_script'; } /** * Return the key(s) of the input / textarea form. * * @return Array * * @since 1.0 * */ protected function get_array_admin_key_form() { return $this->_array_admin_key_form; } /** * Return language domain * * @return string * * @since 1.0 * */ protected function get_language_domain() { return $this->get_prefix().$this->_language_domain; } /** * Return name of the plugin * * @return string * * @since 1.0 * */ protected function get_plugin_name() { return $this->_plugin_name; } /** * Return prefix * * @return string * * @since 1.0 * */ protected function get_prefix() { return $this->_prefix; } /** * Set base_dir * * @var string * * @since 1.0 * */ protected function set_base_dir($base_dir) { $this->_base_dir = $base_dir; } /** * Return base_dir * * @return string * * @since 1.0 * */ protected function get_base_dir() { return $this->_base_dir; } /** * Return custom post name * * @return string * * @since 1.0 * */ protected function get_custom_post_name() { return $this->_custom_post_name; } }