public function isEmptyAction()
 {
     $debugEnabled = $this->getEnvironment()->isDev();
     $isEmpty = true;
     $photos = new SupsysticSlider_Photos_Model_Photos($debugEnabled);
     $list = $photos->getAll();
     if (count($list) > 0) {
         $isEmpty = false;
     }
     return $this->response(Rsc_Http_Response::AJAX, array('isEmpty' => $isEmpty));
 }