PATH:
home
/
letacommog
/
camarsac
/
wp-content
/
plugins
/
jet-engine
/
includes
/
modules
/
forms
/
generators
<?php namespace Jet_Engine\Forms\Generators; abstract class Base { /** * Returns generator ID * * @return [type] [description] */ abstract public function get_id(); /** * Returns generator name * * @return [type] [description] */ abstract public function get_name(); /** * Returns generated options list * * @return array */ abstract public function generate( $field ); }
[+]
..
[-] get-from-field.php
[edit]
[-] base.php
[edit]
[-] get-from-db.php
[edit]
[-] num-range.php
[edit]