<?php
class Picture extends Zend_Db_Table
{
protected $_name = 'picture';
protected $_primary = 'ID';
public function getAllByIdProduct($id) {
return $this->select()->where('IDPRODUCT = '.$id)->order('POSITION ASC')->query()->fetchAll();
}
}
?>