/
home
/
suroeste
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
element-manager
/
/home/suroeste/public_html/wp-content/plugins/elementor/modules/element-manager
mkdir
upload
Name
Size
Mode
Actions
admin-menu-app.php
884
0644
edit
dl
rm
ajax.php
5727
0644
edit
dl
rm
module.php
2579
0644
edit
dl
rm
options.php
532
0644
edit
dl
rm
Edit:
/home/suroeste/public_html/wp-content/plugins/elementor/modules/element-manager/options.php
(532B)
<?php namespace Elementor\Modules\ElementManager; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Options { public static function get_disabled_elements() { return (array) get_option( 'elementor_disabled_elements', [] ); } public static function update_disabled_elements( $elements ) { update_option( 'elementor_disabled_elements', (array) $elements ); } public static function is_element_disabled( $element_name ) { return in_array( $element_name, self::get_disabled_elements() ); } }
Save