Ejemplo n.º 1
0
 /** Get finds data from the model
  * @access public
  * @param type $id
  * @return type
  */
 public function getFindsData($id)
 {
     $finds = new Finds();
     return $finds->getImageToFind($id);
 }
Ejemplo n.º 2
0
 /** Look up the find to image and return it
  * 
  * @param integer $id The image ID number
  */
 public function FindToImage($id)
 {
     $finds = new Finds();
     $imageData = $finds->getImageToFind($id);
     return $this->buildHtml($imageData);
 }