Ejemplo n.º 1
0
 public function ajaxSaveImageData($params)
 {
     $imageId = (int) $params['entityId'];
     $image = $this->themeService->findImageById($imageId);
     if (isset($params['title']) && !empty($params['title'])) {
         $image->title = $params['title'];
     }
     BOL_ThemeImageDao::getInstance()->save($image);
     return array('result' => true, 'imageId' => $imageId);
 }