# easy-code-manager/1.2.1/framework/view/block/parameter/renderer/array/array.php

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

- Page: https://pluginprobe.com/plugins/easy-code-manager/1.2.1/code/framework/view/block/parameter/renderer/array/array.php
- Raw: https://pluginprobe.com/plugins/easy-code-manager/1.2.1/raw/framework/view/block/parameter/renderer/array/array.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/view/block/parameter/renderer/array/array.php#L10-L20`.

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

/**
* 
*/
class CJT_Framework_View_Block_Parameter_Renderer_Array_Array
extends CJT_Framework_View_Block_Parameter_Base_List {
	
	/**
	* put your comment there...
	* 
	* @param mixed $parameter
	* @param mixed $factory
	* @return CJT_Framework_Developer_Interface_Block_Shortcode_Parameters_Base_Abstract
	*/
	public function __construct($parameter, $factory) {
		// Parent procedure!
		parent::__construct($parameter, $factory);
		// Set parent reference for all child parameters.
		foreach ($this->getValues() as $param) {
			$param->setParent($this);
		}
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getValues() {
		return $this->getTypeObject()->getValues();
	}
	
} // End class.
```
