Exemplo n.º 1
0
 /**
  * constructor
  *
  * calls the base class constructor
  * @access public
  */
 function StudipLitListViewAdmin($range_id)
 {
     $this->use_aging = true;
     $this->format_info = _("Felder müssen in geschweiften Klammern (z.B. {dc_title}) angegeben werden.\n") . _("Felder und Text, der zwischen senkrechten Strichen steht, wird nur angezeigt, wenn das angegebene Feld nicht leer ist. (z.B. |Anmerkung: {note}|)\n") . _("Folgende Felder können angezeigt werden:\n") . _("Titel - dc_title\n") . _("Verfasser oder Urheber - dc_creator\n") . _("Thema und Stichwörter - dc_subject\n") . _("Inhaltliche Beschreibung - dc_description\n") . _("Verleger, Herausgeber - dc_publisher\n") . _("Weitere beteiligten Personen und Körperschaften - dc_contributor\n") . _("Datum - dc_date\n") . _("Ressourcenart - dc_type\n") . _("Format - dc_format\n") . _("Ressourcen-Identifikation - dc_identifier\n") . _("Quelle - dc_source\n") . _("Sprache - dc_language\n") . _("Beziehung zu anderen Ressourcen - dc_relation\n") . _("Räumliche und zeitliche Maßangaben - dc_coverage\n") . _("Rechtliche Bedingungen - dc_rights\n") . _("Zugriffsnummer - accession_number\n") . _("Jahr - year\n") . _("alle Autoren - authors\n") . _("Herausgeber mit Jahr - published\n") . _("Anmerkung - note\n") . _("link in externes Bibliothekssystem - external_link\n");
     parent::TreeView("StudipLitList", $range_id);
     //calling the baseclass constructor
     $this->clip_board = StudipLitClipBoard::GetInstance();
 }
Exemplo n.º 2
0
 /**
 * constructor
 *
 * @access public
 */
 function StudipSemTreeViewAdmin($start_item_id = "root"){
     $this->start_item_id = ($start_item_id) ? $start_item_id : "root";
     $this->root_content = $GLOBALS['UNI_INFO'];
     parent::TreeView("StudipSemTree"); //calling the baseclass constructor
     $this->studienmodulmanagement = PluginEngine::getPlugin('StudienmodulManagement');
     URLHelper::bindLinkParam("_marked_item", $this->marked_item);
     $this->marked_sem =& $_SESSION['_marked_sem'];
     $this->parseCommand();
 }
 /**
  * constructor
  *
  * calls the base class constructor, registers a session variable, calls the init function and the command parser
  * @access public
  */
 function StudipRangeTreeViewAdmin()
 {
     $this->root_content = $GLOBALS['UNI_INFO'];
     parent::TreeView("StudipRangeTree");
     //calling the baseclass constructor
     $this->marked_item =& $_SESSION['_marked_item'];
     $this->initTreeStatus();
     $this->parseCommand();
 }
Exemplo n.º 4
0
 /**
  * constructor
  *
  * @access public
  */
 function StudipSemTreeView($start_item_id = "root", $sem_number = null)
 {
     $this->start_item_id = $start_item_id ? $start_item_id : "root";
     $this->root_content = $GLOBALS['UNI_INFO'];
     $args = null;
     if ($sem_number) {
         $args = array('sem_number' => $sem_number);
     }
     parent::TreeView("StudipSemTree", $args);
     //calling the baseclass constructor
 }
Exemplo n.º 5
0
 function TreeView_CatView($tdb, $id, $rootname = 'root')
 {
     $query_course = "SELECT idCategory, COUNT(*) FROM " . $GLOBALS['prefix_lms'] . "_course GROUP BY idCategory ";
     $re_course = sql_query($query_course);
     while ($row = sql_fetch_row($re_course)) {
         $this->cat_not_empty[$row[0]] = $row[1];
     }
     $user_lvl = Docebo::user()->getUserLevelId();
     parent::TreeView($tdb, $id, $rootname);
     $this->can_add = $user_lvl == ADMIN_GROUP_GODADMIN;
     $this->can_mod = $user_lvl == ADMIN_GROUP_GODADMIN;
     $this->can_del = $user_lvl == ADMIN_GROUP_GODADMIN;
     //require_once(_i18n_.'/lib.lang.php');
 }
Exemplo n.º 6
0
 /**
  * constructor
  *
  * @access public
  */
 function StudipRangeTreeView()
 {
     $this->root_content = $GLOBALS['UNI_INFO'];
     parent::TreeView("StudipRangeTree");
     //calling the baseclass constructor
 }
Exemplo n.º 7
0
 function TreeView_WikiView($tdb, $id, $rootname = 'root')
 {
     parent::TreeView($tdb, $id, $rootname);
     $this->can_add = true;
     $this->can_mod = true;
     $this->can_del = true;
 }
Exemplo n.º 8
0
 function TreeView_OrgView($tdb, $id, $rootname = 'root')
 {
     parent::TreeView($tdb, $id, $rootname = 'root');
     $this->multi_choice = Get::sett('use_org_chart_multiple_choice') == '1';
 }