예제 #1
0
 public function getRowsByParentRow(Kwf_Model_Row_Interface $parentRow, $select = array())
 {
     $select = $this->select($select);
     if (!$parentRow instanceof Kwf_Util_Model_Feed_Row_Feed) {
         throw new Kwf_Exception('Only possible with feed row');
     }
     return $parentRow->getEntries($select);
 }