# easy-code-manager/1.2.1/framework/html/field.inc.php

FluentSnippets – High-Performance Code Snippets, Header &amp; Footer Code, Custom CSS &amp; PHP Code Manager, version 1.2.1. 98 lines.

- Page: https://pluginprobe.com/plugins/easy-code-manager/1.2.1/code/framework/html/field.inc.php
- Raw: https://pluginprobe.com/plugins/easy-code-manager/1.2.1/raw/framework/html/field.inc.php
- Modified: 2018-11-20T15:24:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-code-manager/1.2.1/code/framework/html/field.inc.php#L10-L20`.

```php
<?php
/**
* 
*/

/**
* 
*/
abstract class CJTHTMLField {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $classesList;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $form;
	
	 /**
	 * put your comment there...
	 *                                                      
	 * @var mixed
	 */
	protected $id;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $name;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $value;
	
	/**
	* put your comment there...
	* 
	* @param mixed $form
	* @param mixed $name
	* @param mixed $value
	* @param mixed $id
	* @param mixed $classesList
	* @return CJTHTMLField
	*/
	public function __construct($form, $name, $value, $id = null, $classesList = '') {
		// Initialize object.
		$this->form = $form;
		$this->name = $name;
		$this->value = $value;
		$this->id = $id ? $id : $this->name;
		$this->classesList = $classesList;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getForm() {
		return $this->form;	
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getId() {
		return $this->id;	
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getName() {
		return $this->name;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getValue() {
		return $this->value;
	}
	
} // End class.

```
