Priority File Manager

Base Directory:
/home/lvabrwqv/public_html/wp-content/plugins/elementor/includes
NameTypeSizeActions
📁 .. Folder -
📁 admin-templates Folder -
📄 api.php File 8813
Edit Download
📄 autoloader.php File 10022
Edit Download
📁 base Folder -
📄 beta-testers.php File 3059
Edit Download
📄 compatibility.php File 11221
Edit Download
📄 conditions.php File 2768
Edit Download
📁 controls Folder -
📄 db.php File 16276
Edit Download
📄 editor-assets-api.php File 1807
Edit Download
📁 editor-templates Folder -
📁 elements Folder -
📄 embed.php File 8679
Edit Download
📄 fonts.php File 64029
Edit Download
📄 frontend.php File 40070
Edit Download
📄 heartbeat.php File 2635
Edit Download
📁 interfaces Folder -
📁 libraries Folder -
📄 maintenance-mode.php File 11426
Edit Download
📄 maintenance.php File 2881
Edit Download
📁 managers Folder -
📄 plugin.php File 15979
Edit Download
📄 preview.php File 7874
Edit Download
📄 rollback.php File 4255
Edit Download
📁 settings Folder -
📄 shapes.php File 7999
Edit Download
📄 stylesheet.php File 9124
Edit Download
📁 template-library Folder -
📄 tracker.php File 17407
Edit Download
📄 user-data.php File 3522
Edit Download
📄 user.php File 10230
Edit Download
📄 utils.php File 24930
Edit Download
📁 widgets Folder -
$value ) { $this->{$key} = $value; } } /** * Print inline style. * * Add an inline CSS to the rollback page. * * @since 1.5.0 * @access private */ private function print_inline_style() { ?> new_version = $this->version; $plugin_info->slug = $this->plugin_slug; $plugin_info->package = $this->package_url; $plugin_info->url = 'https://elementor.com/'; $update_plugins->response[ $this->plugin_name ] = $plugin_info; // Remove handle beta testers. remove_filter( 'pre_set_site_transient_update_plugins', [ Plugin::instance()->beta_testers, 'check_version' ] ); set_site_transient( 'update_plugins', $update_plugins ); } /** * Upgrade. * * Run WordPress upgrade to rollback Elementor to previous version. * * @since 1.5.0 * @access protected */ protected function upgrade() { require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; $logo_url = ELEMENTOR_ASSETS_URL . 'images/logo-panel.svg'; $upgrader_args = [ 'url' => 'update.php?action=upgrade-plugin&plugin=' . rawurlencode( $this->plugin_name ), 'plugin' => $this->plugin_name, 'nonce' => 'upgrade-plugin_' . $this->plugin_name, 'title' => 'Elementor' . esc_html__( 'Rollback to Previous Version', 'elementor' ), ]; $this->print_inline_style(); add_filter( 'gettext', [ $this, 'update_installing_string' ], 10, 3 ); $upgrader = new \Plugin_Upgrader( new \Plugin_Upgrader_Skin( $upgrader_args ) ); $upgrader->strings['installing_package'] = esc_html__( 'Installing your selected version…', 'elementor' ); $upgrader->upgrade( $this->plugin_name ); remove_filter( 'gettext', [ $this, 'update_installing_string' ], 10 ); } public function update_installing_string( $translation, $text, $domain ) { if ( 'Installing the latest version…' === $text && 'default' === $domain ) { return esc_html__( 'Installing your selected version…', 'elementor' ); } return $translation; } /** * Run. * * Rollback Elementor to previous versions. * * @since 1.5.0 * @access public */ public function run() { $this->apply_package(); $this->upgrade(); } }