Exemplo n.º 1
0
 /**
  * Load all available themes from the database
  *
  * @return array
  */
 public function loadThemesAction()
 {
     $model = new Webdesktop_Model_DbTable_Themes();
     $themes = array();
     foreach ($model->fetchAll() as $row) {
         $theme = new Webdesktop_Model_DbRow_Theme($row);
         $themes[] = $theme->toJsonArray();
     }
     return $this->responseSuccess(array('themes' => $themes));
 }