# css-javascript-toolbox/12.0.3/models/block/parameters/form/value.php

CSS &amp; JavaScript Toolbox, version 12.0.3. 53 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/12.0.3/code/models/block/parameters/form/value.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/12.0.3/raw/models/block/parameters/form/value.php
- Modified: 2025-06-24T15:16:12+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/12.0.3/code/models/block/parameters/form/value.php#L10-L20`.

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

/**
* 
*/
class CJT_Models_Block_Parameters_Form_Value {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $text;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $value;
	
	/**
	* put your comment there...
	* 
	* @param mixed $data
	* @return CJT_Models_Block_Parameters_Form_Value
	*/
	public function __construct($data) {
		$this->text = isset($data['text']) ? $data['text'] : null;
		$this->value = isset($data['value']) ? $data['value'] : null;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getText() {
		return $this->text;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getValue() {
		return $this->value;
	}

} // End class

```
