# css-javascript-toolbox/8.0.2/models/block/parameters/form/parameter.php

CSS &amp; JavaScript Toolbox, version 8.0.2. 169 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/code/models/block/parameters/form/parameter.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/raw/models/block/parameters/form/parameter.php
- Modified: 2014-05-06T16:47:26+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/css-javascript-toolbox/8.0.2/code/models/block/parameters/form/parameter.php#L10-L20`.

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

/**
* 
*/
class CJT_Models_Block_Parameters_Form_Parameter
extends CJT_Models_Block_Parameters_Parameter {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $description;

	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $groupDescription;

	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $groupId;

	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $groupName;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $helpText;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $renderer;

	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $values;
	
	/**
	* put your comment there...
	* 
	* @param mixed $name
	* @param mixed $type
	* @param mixed $required
	* @param mixed $defaultValue
	* @param mixed $parent
	* @param mixed $id
	* @return CJT_Models_Block_Parameters_Parameter
	*/
	public function __construct($parameter) {
		// Initialize parent model.
		parent::__construct($parameter);
		// Initialize.
		$this->groupName = isset($parameter['groupName']) ? $parameter['groupName'] : null;
		$this->groupId = isset($parameter['groupId']) ? $parameter['groupId'] : null;
		$this->groupDescription = isset($parameter['groupDescription']) ? $parameter['groupDescription'] : null;
		$this->renderer = isset($parameter['renderer']) ? $parameter['renderer'] : null;
		$this->description = isset($parameter['description']) ? $parameter['description'] : null;
		$this->helpText = isset($parameter['helpText']) ? $parameter['helpText'] : null;
	}

	/**
	* put your comment there...
	* 
	* @param mixed $value
	*/
	public function addValue($value) {
		// Add value model to the values list.
		$this->values[] = $value;
		// Chaining.
		return $this;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getDescription() {
		return $this->description;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getGroupDescription() {
		return $this->groupDescription;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getGroupId() {
		return $this->groupId;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getGroupName() {
		return $this->groupName;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getHelpText() {
		return $this->helpText;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getOriginalType() {
		return parent::getType();
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getRenderer() {
		return $this->renderer;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getType() {
		return $this->getRenderer();
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getValues() {
		return $this->values;
	}

} // End class.

```
