コード例 #1
0
ファイル: TreeView.php プロジェクト: lohini/cf
 /**
  * @return \ArrayIterator
  */
 protected function getDataRows()
 {
     if (TreeView::EXPANDED === $this->mode) {
         if ($this->dataRows === NULL) {
             $this->dataRows = $this->dataSource->fetchAssoc($this->primaryKey);
         }
         return $this->dataRows;
     }
     return parent::getDataRows();
 }
コード例 #2
0
ファイル: DataGrid.php プロジェクト: lohini/cf
 /**
  * Generates columns from data source
  */
 protected function generateColumns()
 {
     foreach ($this->dataSource->getColumns() as $name) {
         $this->addColumn($name);
     }
 }