PATH:
home
/
thecwrif
/
public_html
/
wp-content
/
plugins
/
jeg-elementor-kit
/
lib
/
jeg-framework
/
form
/
field
<?php /** * Form Field * * @author Jegstudio * @since 1.0.0 * @package jeg-framework */ namespace Jeg\Form\Field; /** * Field control abstract. */ abstract class Field_Abstract { /** * Form Control Data * * @var array */ protected $data; /** * Form Text Template * * @var string */ protected $type = 'text'; /** * Render the control's JS template. */ public function render_template() { ?> <script type="text/html" id="tmpl-form-field-<?php echo esc_attr( $this->type ); ?>"> <?php $this->js_template(); ?> </script> <?php } /** * An Underscore (JS) template for this control's content */ abstract public function js_template(); }
[-] class-upload.php
[edit]
[-] class-password.php
[edit]
[-] class-select.php
[edit]
[-] class-number.php
[edit]
[-] class-radioimage.php
[edit]
[-] class-iconpicker.php
[edit]
[-] class-slider.php
[edit]
[-] class-checkbox.php
[edit]
[+]
..
[-] class-field-abstract.php
[edit]
[-] class-textarea.php
[edit]
[-] class-alert.php
[edit]
[-] class-text.php
[edit]
[-] class-standart.php
[edit]
[-] class-repeater.php
[edit]
[-] class-color.php
[edit]
[-] class-image.php
[edit]
[-] class-heading.php
[edit]