/** Get finds data from the model * @access public * @param type $id * @return type */ public function getFindsData($id) { $finds = new Finds(); return $finds->getImageToFind($id); }
/** 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); }