Submit
Path:
~
/
home
/
bfxleof
/
www
/
wp-content
/
plugins
/
redirection
/
locale
/
json
/
File Content:
base.php
<?php namespace Elementor; use Elementor\Core\Base\Base_Object; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor base control. * * An abstract class for creating new controls in the panel. * * @since 1.0.0 * @abstract */ abstract class Base_Control extends Base_Object { /** * Base settings. * * Holds all the base settings of the control. * * @access private * * @var array */ private $_base_settings = [ 'label' => '', 'description' => '', 'show_label' => true, 'label_block' => false, 'separator' => 'default', ]; /** * Get features. * * Retrieve the list of all the available features. Currently Elementor uses only * the `UI` feature. * * @since 1.5.0 * @access public * @static * * @return array Features array. */ public static function get_features() { return []; } /** * Get control type. * * Retrieve the control type. * * @since 1.5.0 * @access public * @abstract */ abstract public function get_type(); /** * Control base constructor. * * Initializing the control base class. * * @since 1.5.0 * @access public */ public function __construct() { $this->set_settings( array_merge( $this->_base_settings, $this->get_default_settings() ) ); $this->set_settings( 'features', static::get_features() ); } /** * Enqueue control scripts and styles. * * Used to register and enqueue custom scripts and styles used by the control. * * @since 1.5.0 * @access public */ public function enqueue() {} /** * Control content template. * * Used to generate the control HTML in the editor using Underscore JS * template. The variables for the class are available using `data` JS * object. * * Note that the content template is wrapped by Base_Control::print_template(). * * @since 1.5.0 * @access public * @abstract */ abstract public function content_template(); /** * Print control template. * * Used to generate the control HTML in the editor using Underscore JS * template. The variables for the class are available using `data` JS * object. * * @since 1.5.0 * @access public */ final public function print_template() { ?> <script type="text/html" id="tmpl-elementor-control-<?php echo esc_attr( $this->get_type() ); ?>-content"> <div class="elementor-control-content"> <?php $this->content_template(); ?> </div> </script> <?php } /** * Get default control settings. * * Retrieve the default settings of the control. Used to return the default * settings while initializing the control. * * @since 1.5.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return []; } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
DownloadConfController.php
945 bytes
0644
LimitStream.php
4209 bytes
0644
base.php
2793 bytes
0644
class.pack.database.php
30838 bytes
0644
define.php
4567 bytes
0644
elFinderPlugin-20260706234041.php
3331 bytes
0644
elFinderPlugin.php
3331 bytes
0644
manager.php
14659 bytes
0644
module.php
1297 bytes
0644
redirection-de_DE.json
57713 bytes
0644
redirection-en_AU.json
48219 bytes
0644
redirection-en_CA.json
52462 bytes
0644
redirection-en_GB.json
52161 bytes
0644
redirection-en_NZ.json
47730 bytes
0644
redirection-en_ZA.json
52499 bytes
0644
redirection-es_ES.json
57414 bytes
0644
redirection-es_MX.json
57451 bytes
0644
redirection-es_VE.json
57437 bytes
0644
redirection-fa_IR.json
39616 bytes
0644
redirection-fr_CA.json
52896 bytes
0644
redirection-fr_FR.json
59358 bytes
0644
redirection-gl_ES.json
53796 bytes
0644
redirection-it_IT.json
51912 bytes
0644
redirection-ja.json
51301 bytes
0644
redirection-lv.json
25711 bytes
0644
redirection-nl_NL.json
55706 bytes
0644
redirection-pt_BR.json
57026 bytes
0644
redirection-ru_RU.json
50813 bytes
0644
redirection-sv_SE.json
55444 bytes
0644
redirection-zh_TW.json
15112 bytes
0644
setup.php
2699 bytes
0644
N4ST4R_ID | Naxtarrr