Exemplo n.º 1
0
 public function __construct($config = array())
 {
     $config['proxyModel'] = new Kwf_Model_FnF(array('columns' => array('id', 'component_id', 'pos', 'visible', 'component'), 'primaryKey' => 'id', 'data' => array(array('id' => 1, 'component_id' => 'root-master_test', 'pos' => 1, 'visible' => 1, 'component' => 'child'), array('id' => 2, 'component_id' => 'root-master_test', 'pos' => 2, 'visible' => 1, 'component' => 'child'), array('id' => 3, 'component_id' => 'root-master_test', 'pos' => 3, 'visible' => 1, 'component' => 'child'), array('id' => 4, 'component_id' => 'root-master_test', 'pos' => 4, 'visible' => 1, 'component' => 'child'))));
     parent::__construct($config);
 }
Exemplo n.º 2
0
 public function __construct($config = array())
 {
     $config['proxyModel'] = new Kwf_Model_FnF(array('columns' => array('id', 'component_id', 'pos', 'visible', 'component'), 'primaryKey' => 'id'));
     parent::__construct($config);
 }
 public function __construct($config = array())
 {
     $config['proxyModel'] = new Kwf_Model_FnF(array('columns' => array('id', 'component_id', 'device_visible', 'pos', 'visible', 'component'), 'primaryKey' => 'id', 'data' => array(array('id' => 1, 'component_id' => 'root', 'device_visible' => 'all', 'pos' => 1, 'visible' => 1, 'component' => 'paragraph'), array('id' => 2, 'component_id' => 'root', 'device_visible' => 'all', 'pos' => 2, 'visible' => 0, 'component' => 'paragraph'), array('id' => 11, 'component_id' => 'foo', 'device_visible' => 'all', 'pos' => 1, 'visible' => 1, 'component' => 'paragraph'))));
     parent::__construct($config);
 }