Esempio n. 1
0
 public function ImgPath($params)
 {
     $mapper = new ImageMapper();
     if (!empty($params['id'])) {
         $response = array($mapper->ImgPath($params['id']));
     } else {
         $response = FALSE;
     }
     return $response;
 }