Exemplo n.º 1
0
 public function getRecordings()
 {
     $table = new Model_DbTable_Recordings();
     $select = $table->select();
     $select->where('sheet_id = ?', $this->id);
     $select->order('created ASC');
     return $table->fetchAll($select);
 }