Exemplo n.º 1
0
 function Index()
 {
     if (!$this->request->isLoggedIn()) {
         $this->response->setRedirect(caNavUrl($this->request, '', 'LoginReg', 'loginForm'));
         return;
     }
     $t_sets = new ca_sets();
     $va_read_sets = $t_sets->getSetsForUser(array("table" => "ca_objects", "user_id" => $this->request->getUserID(), "checkAccess" => $this->opa_access_values, "access" => 1));
     $va_write_sets = $t_sets->getSetsForUser(array("table" => "ca_objects", "user_id" => $this->request->getUserID(), "access" => 2));
     # --- remove write sets from the read array
     $va_read_sets = array_diff_key($va_read_sets, $va_write_sets);
     $this->view->setVar("read_sets", $va_read_sets);
     $this->view->setVar("write_sets", $va_write_sets);
     $va_set_ids = array_merge(array_keys($va_read_sets), array_keys($va_write_sets));
     $this->view->setVar("set_ids", $va_set_ids);
     $va_set_change_log = $t_sets->getSetChangeLog($va_set_ids);
     $this->view->setVar("activity", $va_set_change_log);
     MetaTagManager::setWindowTitle($this->request->config->get("app_display_name") . ": " . _t("Lightbox"));
     $this->render("Sets/set_list_html.php");
 }