Submit
Path:
~
/
home
/
b
/
f
/
x
/
bfxleof
/
www
/
wp-content
/
plugins
/
wp-file-manager
/
languages
/
File Content:
manager.php
<?php namespace Elementor\Core\Experiments; use Elementor\Core\Base\Base_Object; use Elementor\Core\Upgrade\Manager as Upgrade_Manager; use Elementor\Plugin; use Elementor\Settings; use Elementor\Tracker; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Manager extends Base_Object { const RELEASE_STATUS_DEV = 'dev'; const RELEASE_STATUS_ALPHA = 'alpha'; const RELEASE_STATUS_BETA = 'beta'; const RELEASE_STATUS_RC = 'rc'; const RELEASE_STATUS_STABLE = 'stable'; const STATE_DEFAULT = 'default'; const STATE_ACTIVE = 'active'; const STATE_INACTIVE = 'inactive'; private $states; private $release_statuses; private $features; /** * Add Feature * * @since 3.1.0 * @access public * * @param array $options { * @type string $name * @type string $title * @type string $description * @type string $release_status * @type string $default * @type callable $on_state_change * } * * @return array|null */ public function add_feature( array $options ) { if ( isset( $this->features[ $options['name'] ] ) ) { return null; } $default_experimental_data = [ 'description' => '', 'release_status' => self::RELEASE_STATUS_ALPHA, 'default' => self::STATE_INACTIVE, 'new_site' => [ 'default_active' => false, 'always_active' => false, 'minimum_installation_version' => null, ], 'on_state_change' => null, ]; $allowed_options = [ 'name', 'title', 'description', 'release_status', 'default', 'new_site', 'on_state_change' ]; $experimental_data = $this->merge_properties( $default_experimental_data, $options, $allowed_options ); $new_site = $experimental_data['new_site']; $feature_is_mutable = true; if ( $new_site['default_active'] || $new_site['always_active'] ) { $is_new_installation = Upgrade_Manager::install_compare( $new_site['minimum_installation_version'], '>=' ); if ( $is_new_installation ) { if ( $new_site['always_active'] ) { $experimental_data['state'] = self::STATE_ACTIVE; $feature_is_mutable = false; } elseif ( $new_site['default_active'] ) { $experimental_data['default'] = self::STATE_ACTIVE; } } } $experimental_data['mutable'] = $feature_is_mutable; if ( $feature_is_mutable ) { $state = $this->get_saved_feature_state( $options['name'] ); if ( ! $state ) { $state = self::STATE_DEFAULT; } $experimental_data['state'] = $state; } $this->features[ $options['name'] ] = $experimental_data; if ( $feature_is_mutable && is_admin() ) { $feature_option_key = $this->get_feature_option_key( $options['name'] ); $on_state_change_callback = function( $old_state, $new_state ) use ( $experimental_data ) { $this->on_feature_state_change( $experimental_data, $new_state ); }; add_action( 'add_option_' . $feature_option_key, $on_state_change_callback, 10, 2 ); add_action( 'update_option_' . $feature_option_key, $on_state_change_callback, 10, 2 ); } do_action( 'elementor/experiments/feature-registered', $this, $experimental_data ); return $experimental_data; } /** * Remove Feature * * @since 3.1.0 * @access public * * @param string $feature_name */ public function remove_feature( $feature_name ) { unset( $this->features[ $feature_name ] ); } /** * Get Features * * @since 3.1.0 * @access public * * @param string $feature_name Optional. Default is null * * @return array|null */ public function get_features( $feature_name = null ) { return self::get_items( $this->features, $feature_name ); } /** * Get Active Features * * @since 3.1.0 * @access public * * @return array */ public function get_active_features() { return array_filter( $this->features, [ $this, 'is_feature_active' ], ARRAY_FILTER_USE_KEY ); } /** * Is Feature Active * * @since 3.1.0 * @access public * * @param string $feature_name * * @return bool */ public function is_feature_active( $feature_name ) { $feature = $this->get_features( $feature_name ); if ( ! $feature ) { return false; } return self::STATE_ACTIVE === $this->get_feature_actual_state( $feature ); } /** * Set Feature Default State * * @since 3.1.0 * @access public * * @param string $feature_name * @param int $default_state */ public function set_feature_default_state( $feature_name, $default_state ) { $feature = $this->get_features( $feature_name ); if ( ! $feature ) { return; } $this->features[ $feature_name ]['default'] = $default_state; } /** * Get Feature Option Key * * @since 3.1.0 * @access private * * @param string $feature_name * * @return string */ private function get_feature_option_key( $feature_name ) { return 'elementor_experiment-' . $feature_name; } private function add_default_features() { $this->add_feature( [ 'name' => 'e_dom_optimization', 'title' => __( 'Optimized DOM Output', 'elementor' ), 'description' => __( 'Developers, Please Note! This experiment includes some markup changes. If you\'ve used custom code in Elementor, you might have experienced a snippet of code not running. Turning this experiment off allows you to keep prior Elementor markup output settings, and have that lovely code running again.', 'elementor' ) . ' <a href="https://go.elementor.com/wp-dash-legacy-optimized-dom" target="_blank">' . __( 'Learn More', 'elementor' ) . '</a>', 'release_status' => self::RELEASE_STATUS_BETA, 'new_site' => [ 'default_active' => true, 'minimum_installation_version' => '3.1.0-beta', ], ] ); $this->add_feature( [ 'name' => 'e_optimized_assets_loading', 'title' => __( 'Improved Asset Loading', 'elementor' ), 'description' => __( 'Please Note! The "Improved Asset Loading" mode reduces the amount of code that is loaded on the page by default. When activated, parts of the infrastructure code will be loaded dynamically, only when needed. Keep in mind that activating this experiment may cause conflicts with incompatible plugins.', 'elementor' ) . ' <a href="https://go.elementor.com/wp-dash-improved-asset-loading/" target="_blank">' . __( 'Learn More', 'elementor' ) . '</a>', 'release_status' => self::RELEASE_STATUS_ALPHA, ] ); $this->add_feature( [ 'name' => 'a11y_improvements', 'title' => __( 'Accessibility Improvements', 'elementor' ), 'description' => __( 'An array of accessibility enhancements in Elementor pages.', 'elementor' ) . '<br><strong>' . __( 'Please note!', 'elementor' ) . '</strong> ' . __( 'These enhancements may include some markup changes to existing elementor widgets', 'elementor' ) . ' <a href="https://go.elementor.com/wp-dash-a11y-improvements" target="_blank">' . __( 'Learn More', 'elementor' ) . '</a>', 'release_status' => self::RELEASE_STATUS_BETA, 'new_site' => [ 'default_active' => true, 'minimum_installation_version' => '3.1.0-beta', ], ] ); $this->add_feature( [ 'name' => 'e_import_export', 'title' => __( 'Import Export Template Kit', 'elementor' ), 'description' => __( 'Design sites faster with a template kit that contains some or all components of a complete site, like templates, content & site settings.', 'elementor' ) . '<br>' . __( 'You can import a kit and apply it to your site, or export the elements from this site to be used anywhere else.', 'elementor' ), 'release_status' => self::RELEASE_STATUS_ALPHA, ] ); } /** * Init States * * @since 3.1.0 * @access private */ private function init_states() { $this->states = [ self::STATE_DEFAULT => __( 'Default', 'elementor' ), self::STATE_ACTIVE => __( 'Active', 'elementor' ), self::STATE_INACTIVE => __( 'Inactive', 'elementor' ), ]; } /** * Init Statuses * * @since 3.1.0 * @access private */ private function init_release_statuses() { $this->release_statuses = [ self::RELEASE_STATUS_DEV => __( 'Development', 'elementor' ), self::RELEASE_STATUS_ALPHA => __( 'Alpha', 'elementor' ), self::RELEASE_STATUS_BETA => __( 'Beta', 'elementor' ), self::RELEASE_STATUS_RC => __( 'Release Candidate', 'elementor' ), self::RELEASE_STATUS_STABLE => __( 'Stable', 'elementor' ), ]; } /** * Init Features * * @since 3.1.0 * @access private */ private function init_features() { $this->features = []; $this->add_default_features(); do_action( 'elementor/experiments/default-features-registered', $this ); } /** * Register Settings Fields * * @param Settings $settings * * @since 3.1.0 * @access private * */ private function register_settings_fields( Settings $settings ) { $features = $this->get_features(); $fields = []; foreach ( $features as $feature_name => $feature ) { if ( ! $feature['mutable'] ) { unset( $features[ $feature_name ] ); continue; } $feature_key = 'experiment-' . $feature_name; $fields[ $feature_key ]['label'] = $this->get_feature_settings_label_html( $feature ); $fields[ $feature_key ]['field_args'] = $feature; $fields[ $feature_key ]['render'] = function( $feature ) { $this->render_feature_settings_field( $feature ); }; } if ( ! $features ) { $fields['no_features'] = [ 'label' => __( 'No available experiments', 'elementor' ), 'field_args' => [ 'type' => 'raw_html', 'html' => __( 'The current version of Elementor doesn\'t have any experimental features . if you\'re feeling curious make sure to come back in future versions.', 'elementor' ), ], ]; } if ( ! Tracker::is_allow_track() ) { $fields += $settings->get_usage_fields(); } $settings->add_tab( 'experiments', [ 'label' => __( 'Experiments', 'elementor' ), 'sections' => [ 'experiments' => [ 'callback' => function() { $this->render_settings_intro(); }, 'fields' => $fields, ], ], ] ); } /** * Render Settings Intro * * @since 3.1.0 * @access private */ private function render_settings_intro() { ?> <h2><?php echo __( 'Experiments', 'elementor' ); ?></h2> <p><?php echo sprintf( __( 'Access new and experimental features from Elementor before they\'re officially released. As these features are still in development, they are likely to change, evolve or even be removed altogether. <a href="%s" target="_blank">Learn More.</a>', 'elementor' ), 'https://go.elementor.com/wp-dash-experiments/' ); ?></p> <p><?php echo __( 'To use an experiment on your site, simply click on the dropdown next to it and switch to Active. You can always deactivate them at any time.', 'elementor' ); ?></p> <p><?php echo sprintf( __( 'Your feedback is important - <a href="%s" target="_blank">help us</a> improve these features by sharing your thoughts and inputs.', 'elementor' ), 'https://go.elementor.com/wp-dash-experiments-report-an-issue/' ); ?></p> <?php } /** * Render Feature Settings Field * * @since 3.1.0 * @access private * * @param array $feature */ private function render_feature_settings_field( array $feature ) { ?> <div class="e-experiment__content"> <select id="e-experiment-<?php echo $feature['name']; ?>" class="e-experiment__select" name="<?php echo $this->get_feature_option_key( $feature['name'] ); ?>"> <?php foreach ( $this->states as $state_key => $state_title ) { ?> <option value="<?php echo $state_key; ?>" <?php selected( $state_key, $feature['state'] ); ?>><?php echo $state_title; ?></option> <?php } ?> </select> <p class="description"><?php echo $feature['description']; ?></p> <div class="e-experiment__status"><?php echo sprintf( __( 'Status: %s', 'elementor' ), $this->release_statuses[ $feature['release_status'] ] ); ?></div> </div> <?php } /** * Get Feature Settings Label HTML * * @since 3.1.0 * @access private * * @param array $feature * * @return string */ private function get_feature_settings_label_html( array $feature ) { ob_start(); $is_feature_active = $this->is_feature_active( $feature['name'] ); $indicator_classes = 'e-experiment__title__indicator'; if ( $is_feature_active ) { $indicator_classes .= ' e-experiment__title__indicator--active'; } if ( self::STATE_DEFAULT === $feature['state'] ) { $indicator_tooltip = $is_feature_active ? __( 'Active by default', 'elementor' ) : __( 'Inactive by default', 'elementor' ); } else { $indicator_tooltip = self::STATE_ACTIVE === $feature['state'] ? __( 'Active', 'elementor' ) : __( 'Inactive', 'elementor' ); } ?> <div class="e-experiment__title"> <div class="<?php echo $indicator_classes; ?>" data-tooltip="<?php echo $indicator_tooltip; ?>"></div> <label class="e-experiment__title__label" for="e-experiment-<?php echo $feature['name']; ?>"><?php echo $feature['title']; ?></label> </div> <?php return ob_get_clean(); } /** * Get Feature Settings Label HTML * * @since 3.1.0 * @access private * * @param string $feature_name * * @return int */ private function get_saved_feature_state( $feature_name ) { return get_option( $this->get_feature_option_key( $feature_name ) ); } /** * Get Feature Actual State * * @since 3.1.0 * @access private * * @param array $feature * * @return string */ private function get_feature_actual_state( array $feature ) { if ( self::STATE_DEFAULT !== $feature['state'] ) { return $feature['state']; } return $feature['default']; } /** * On Feature State Change * * @since 3.1.0 * @access private * * @param array $old_feature_data * @param string $new_state */ private function on_feature_state_change( array $old_feature_data, $new_state ) { $this->features[ $old_feature_data['name'] ]['state'] = $new_state; $new_feature_data = $this->get_features( $old_feature_data['name'] ); $actual_old_state = $this->get_feature_actual_state( $old_feature_data ); $actual_new_state = $this->get_feature_actual_state( $new_feature_data ); if ( $actual_old_state === $actual_new_state ) { return; } Plugin::$instance->files_manager->clear_cache(); if ( $new_feature_data['on_state_change'] ) { $new_feature_data['on_state_change']( $actual_old_state, $actual_new_state ); } } public function __construct() { $this->init_states(); $this->init_release_statuses(); $this->init_features(); if ( is_admin() ) { $page_id = Settings::PAGE_ID; add_action( "elementor/admin/after_create_settings/{$page_id}", function( Settings $settings ) { $this->register_settings_fields( $settings ); }, 11 ); } } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
DownloadConfController.php
945 bytes
0644
JsonSerializable.php
577 bytes
0644
LimitStream.php
4209 bytes
0644
class-sitemaps-admin.php
3665 bytes
0644
class.pack.database.php
30838 bytes
0644
define.php
4567 bytes
0644
duplicator.php
1781 bytes
0644
elFinderPlugin.php
3331 bytes
0644
elFinderVolumeLocalFileSystem.class-20260623050500-20260705194237.php
48544 bytes
0644
elFinderVolumeLocalFileSystem.class-20260623050500-20260706180650.php
48544 bytes
0644
elFinderVolumeLocalFileSystem.class-20260623050500.php
48544 bytes
0644
exceptions.php
708 bytes
0644
inc.validator.php
5401 bytes
0644
loco.php
5626 bytes
0644
loco.xml
657 bytes
0644
manager.php
14659 bytes
0644
module.php
1297 bytes
0644
setup.php
2699 bytes
0644
wp-file-manager-af.mo
17155 bytes
0644
wp-file-manager-af.po
27236 bytes
0644
wp-file-manager-ar.mo
21701 bytes
0644
wp-file-manager-ar.po
32228 bytes
0644
wp-file-manager-az.mo
18700 bytes
0644
wp-file-manager-az.po
28852 bytes
0644
wp-file-manager-bel.mo
24363 bytes
0644
wp-file-manager-bel.po
35005 bytes
0644
wp-file-manager-bg_BG.mo
24400 bytes
0644
wp-file-manager-bg_BG.po
34929 bytes
0644
wp-file-manager-bn_BD.mo
28497 bytes
0644
wp-file-manager-bn_BD.po
39039 bytes
0644
wp-file-manager-bs_BA.mo
18256 bytes
0644
wp-file-manager-bs_BA.po
28359 bytes
0644
wp-file-manager-ca.mo
18768 bytes
0644
wp-file-manager-ca.po
28942 bytes
0644
wp-file-manager-ceb.mo
18369 bytes
0644
wp-file-manager-ceb.po
25299 bytes
0644
wp-file-manager-cs_CZ.mo
17768 bytes
0644
wp-file-manager-cs_CZ.po
27639 bytes
0644
wp-file-manager-cy.mo
17854 bytes
0644
wp-file-manager-cy.po
27819 bytes
0644
wp-file-manager-da_DK.mo
17300 bytes
0644
wp-file-manager-da_DK.po
27264 bytes
0644
wp-file-manager-de_DE.mo
18108 bytes
0644
wp-file-manager-de_DE.po
28004 bytes
0644
wp-file-manager-el.mo
26530 bytes
0644
wp-file-manager-el.po
33569 bytes
0644
wp-file-manager-eo.po
27126 bytes
0644
wp-file-manager-es_ES.mo
19000 bytes
0644
wp-file-manager-es_ES.po
25934 bytes
0644
wp-file-manager-et.mo
17282 bytes
0644
wp-file-manager-et.po
27150 bytes
0644
wp-file-manager-eu.mo
18020 bytes
0644
wp-file-manager-eu.po
27991 bytes
0644
wp-file-manager-fa_IR.mo
22688 bytes
0644
wp-file-manager-fa_IR.po
29688 bytes
0644
wp-file-manager-fi.mo
17591 bytes
0644
wp-file-manager-fi.po
27578 bytes
0644
wp-file-manager-fr_FR.mo
19227 bytes
0644
wp-file-manager-fr_FR.po
28731 bytes
0644
wp-file-manager-gd.mo
19324 bytes
0644
wp-file-manager-gd.po
29429 bytes
0644
wp-file-manager-gl_ES.mo
18745 bytes
0644
wp-file-manager-gl_ES.po
28880 bytes
0644
wp-file-manager-gu.mo
26969 bytes
0644
wp-file-manager-gu.po
33877 bytes
0644
wp-file-manager-he_IL.mo
19609 bytes
0644
wp-file-manager-he_IL.po
29486 bytes
0644
wp-file-manager-hi_IN - Copy.mo
444 bytes
0644
wp-file-manager-hi_IN.mo
27694 bytes
0644
wp-file-manager-hi_IN.po
38023 bytes
0644
wp-file-manager-hr.mo
18178 bytes
0644
wp-file-manager-hr.po
28236 bytes
0644
wp-file-manager-hu_HU.mo
19146 bytes
0644
wp-file-manager-hu_HU.po
29182 bytes
0644
wp-file-manager-hy.mo
24885 bytes
0644
wp-file-manager-hy.po
35514 bytes
0644
wp-file-manager-id_ID.mo
17419 bytes
0644
wp-file-manager-id_ID.po
27214 bytes
0644
wp-file-manager-is_IS.mo
17969 bytes
0644
wp-file-manager-is_IS.po
27831 bytes
0644
wp-file-manager-it_IT.mo
17850 bytes
0644
wp-file-manager-it_IT.po
27728 bytes
0644
wp-file-manager-ko_KR.mo
18508 bytes
0644
wp-file-manager-ko_KR.po
83399 bytes
0644
wp-file-manager-ms_MY.mo
17270 bytes
0644
wp-file-manager-ms_MY.po
79397 bytes
0644
wp-file-manager-nl_NL.mo
17513 bytes
0644
wp-file-manager-nl_NL.po
80150 bytes
0644
wp-file-manager-nn_NO.mo
17513 bytes
0644
wp-file-manager-nn_NO.po
78538 bytes
0644
wp-file-manager-pt_PT.mo
18127 bytes
0644
wp-file-manager-pt_PT.po
81089 bytes
0644
wp-file-manager-ro_RO.mo
18531 bytes
0644
wp-file-manager-ro_RO.po
28106 bytes
0644
wp-file-manager-ru_RU.mo
24533 bytes
0644
wp-file-manager-ru_RU.po
35326 bytes
0644
wp-file-manager-sk_SK.mo
18133 bytes
0644
wp-file-manager-sk_SK.po
81910 bytes
0644
wp-file-manager-sl_SI.mo
17997 bytes
0644
wp-file-manager-sl_SI.po
80265 bytes
0644
wp-file-manager-sq.mo
18572 bytes
0644
wp-file-manager-sq.po
83815 bytes
0644
wp-file-manager-sr_RS.mo
24078 bytes
0644
wp-file-manager-sr_RS.po
102326 bytes
0644
wp-file-manager-sv_SE.mo
17707 bytes
0644
wp-file-manager-sv_SE.po
79450 bytes
0644
wp-file-manager-te.mo
30008 bytes
0644
wp-file-manager-te.po
36918 bytes
0644
wp-file-manager-th.mo
27487 bytes
0644
wp-file-manager-th.po
37964 bytes
0644
wp-file-manager-tr_TR.mo
18220 bytes
0644
wp-file-manager-tr_TR.po
28199 bytes
0644
wp-file-manager-uk.mo
24435 bytes
0644
wp-file-manager-uk.po
35030 bytes
0644
wp-file-manager-ur.mo
22266 bytes
0644
wp-file-manager-ur.po
32450 bytes
0644
wp-file-manager-uz_UZ.mo
18380 bytes
0644
wp-file-manager-uz_UZ.po
25290 bytes
0644
wp-file-manager-vi.mo
20154 bytes
0644
wp-file-manager-vi.po
30257 bytes
0644
wp-file-manager-zh_CN.mo
16355 bytes
0644
wp-file-manager-zh_CN.po
25910 bytes
0644
wp-file-manager.pot
825 bytes
0644
N4ST4R_ID | Naxtarrr