PATH:
home
/
thecwrif
/
public_html
/
wp-content
/
plugins
/
jeg-elementor-kit
/
lib
/
jeg-framework
/
form
/
segment
<?php /** * Customizer Section Abstract * * Creates a text * * @author Jegstudio * @since 1.0.0 * @package jeg-framework */ namespace Jeg\Form\Segment; /** * Section Abstract */ abstract class Segment_Abstract { /** * Form Control Data * * @var array */ protected $data; /** * Form Text Template * * @var string */ protected $type = ''; /** * Render the control's JS template. */ public function render_template() { ?> <script type="text/html" id="tmpl-form-segment-<?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-tabbed-segment.php
[edit]
[-] class-segment-abstract.php
[edit]
[-] class-nowrap-segment.php
[edit]
[-] class-normal-segment.php
[edit]