File "base.php"

Full path: /home/dora/public_html/wp-content/plugins/jet-engine/includes/modules/forms/generators/base.php
File size: 407 bytes
MIME-type: --
Charset: utf-8

<?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 );

}