Exemplo n.º 1
0
 /**
  * @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();
 }