# css-javascript-toolbox/8.0.3/models/block/parameters/parameters.php

CSS &amp; JavaScript Toolbox, version 8.0.3. 34 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.3/code/models/block/parameters/parameters.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.3/raw/models/block/parameters/parameters.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.3/code/models/block/parameters/parameters.php#L10-L20`.

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

/**
* 
*/
class CJT_Models_Block_Parameters_Parameters
extends CJT_Models_Block_Parameters_Base_Parameters {
	
	/**
	* put your comment there...
	* 
	* @param mixed $row
	*/
	public function createModelObject($row) {
		return new CJT_Models_Block_Parameters_Parameter($row);
	}

	/**
	* put your comment there...
	* 
	*/
	protected function getQuery() {
		$query = "SELECT p.* 
										 FROM #__cjtoolbox_parameters p LEFT JOIN #__cjtoolbox_blocks b ON p.blockId = b.id
										 WHERE b.id = {$this->blockId}
										 ORDER by id ASC;";
		return $query;
	}

} // End class.

```
