3 require_once(
'./Services/Repository/classes/class.ilObjectPlugin.php');
67 $this->lng = $DIC->language();
68 $this->obj_definition = $DIC[
"objDefinition"];
70 $this->access = $DIC->access();
71 $this->ctrl = $DIC->ctrl();
72 $this->toolbar = $DIC->toolbar();
73 $this->tpl = $DIC[
"tpl"];
74 $lng = $DIC->language();
76 $this->parent_ref_id = (int) $a_parent_ref_id;
79 $lng->loadLanguageModule(
"rep");
80 $lng->loadLanguageModule(
"cntr");
85 $this->mode = (int) $a_mode;
95 $this->disabled_object_types = $a_types;
105 $this->url_creation_callback = $a_ref_id;
115 $this->url_creation = $a_url;
131 $this->sub_objects = array();
133 $settings_map = array(
"blog" =>
"blogs",
135 "tstv" =>
"certificates",
136 "excv" =>
"certificates",
137 "crsv" =>
"certificates",
138 "cmxv" =>
"certificates",
139 "ltiv" =>
"certificates",
140 "scov" =>
"certificates",
144 if (count($subtypes) > 0) {
145 foreach (array_keys($subtypes) as
$type) {
146 if (isset($settings_map[$type]) &&
147 $ilSetting->get(
"disable_wsp_" . $settings_map[$type])) {
151 $this->sub_objects[] = array(
"type" =>
"object",
153 "title" =>
$lng->txt(
"wsp_type_" . $type));
173 $this->sub_objects = array();
175 if (!is_array($this->disabled_object_types)) {
176 $this->disabled_object_types = array();
178 $this->disabled_object_types[] =
"rolf";
181 $subtypes = $objDefinition->getCreatableSubObjects($parent_type, $this->mode, $this->parent_ref_id);
182 if (count($subtypes) > 0) {
185 $grp_map = $pos_group_map = array();
187 include_once(
"Services/Repository/classes/class.ilObjRepositorySettings.php");
193 $groups = $default[
"groups"];
194 $grp_map = $default[
"items"];
198 foreach ($subtypes as $item_type => $item) {
200 if (substr($item_type, 0, 1) ==
"x") {
201 $subtypes[$item_type][
"pos"] =
"99992000";
203 $subtypes[$item_type][
"pos"] =
"9999" . str_pad(++$pos, 4,
"0", STR_PAD_LEFT);
208 foreach ($default[
"sort"] as $item_type => $pos) {
209 if (array_key_exists($item_type, $subtypes)) {
210 $subtypes[$item_type][
"pos"] = $pos;
220 foreach ($subitems as $subitem) {
221 $grp_map[$subitem] = $grp_id;
226 $group_separators = array();
227 $pos_group_map[0] =
$lng->txt(
"rep_new_item_group_other");
228 $old_grp_ids = array();
229 foreach ($groups as $item) {
231 $pos_group_map[$item[
"id"]] = $item[
"title"];
232 } elseif (
sizeof($old_grp_ids)) {
233 $group_separators[$item[
"id"]] = $old_grp_ids;
235 $old_grp_ids[] = $item[
"id"];
239 foreach ($subtypes as
$type => $subitem) {
240 if (!in_array(
$type, $this->disabled_object_types)) {
242 if ($ilAccess->checkAccess(
"create_" .
$type,
"", $this->parent_ref_id, $parent_type)) {
244 if (
sizeof($pos_group_map) > 1) {
245 $obj_grp_id = (int) $grp_map[
$type];
246 if ($obj_grp_id !== $current_grp) {
249 foreach ($group_separators as $idx => $spath) {
251 if ($current_grp && !in_array($obj_grp_id, $spath)) {
254 $this->sub_objects[] = array(
"type" =>
"column_separator");
257 unset($group_separators[$idx]);
261 $title = $pos_group_map[$obj_grp_id];
263 $this->sub_objects[] = array(
"type" =>
"group",
266 $current_grp = $obj_grp_id;
270 if ($subitem[
"plugin"]) {
271 include_once(
"./Services/Component/classes/class.ilPlugin.php");
278 $this->sub_objects[] = array(
"type" =>
"object",
299 $base_url =
"ilias.php?baseClass=ilRepositoryGUI&ref_id=" . $this->parent_ref_id .
"&cmd=create";
303 $base_url =
$ilCtrl->appendRequestTokenParameterString($base_url);
305 if ($this->url_creation_callback) {
309 include_once(
"./Services/UIComponent/GroupedList/classes/class.ilGroupedListGUI.php");
311 $gl->setAsDropDown(
true,
false);
313 foreach ($this->sub_objects as $item) {
314 switch ($item[
"type"]) {
315 case "column_separator":
326 $gl->addGroupHeader($item[
"title"]);
330 $type = $item[
"value"];
332 $path = ilObject::_getIcon(
'',
'tiny',
$type);
333 $icon = ($path !=
"")
342 $icon . $item[
"title"],
359 return $gl->getHTML();
379 $ov_id =
"il_add_new_item_ov";
380 $ov_trigger_id = $ov_id .
"_tr";
383 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
385 $adv->setListTitle(
$lng->txt(
"cntr_add_new_item"));
387 $adv->setGroupedList($this->gl);
389 $tpl->setVariable(
"SELECT_OBJTYPE_REPOS", $adv->getHTML());
395 include_once
"Services/UIComponent/Button/classes/class.ilLinkButton.php";
397 $button->setId($ov_trigger_id);
398 $button->setCaption(
"cntr_add_new_item");
399 $button->setPrimary(
true);
400 $ilToolbar->addButtonInstance($button);
404 "SELECT_OBJTYPE_REPOS",
405 '<div id="' . $ov_id .
'" style="display:none;" class="ilOverlay">' .
setCreationUrl($a_url)
Set (custom) url for object creation.
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
static lookupTxtById($plugin_id, $lang_var)
static getNewItemGroups()
static getNewItemGroupSubItems()
parseRepository()
Parse creatable sub objects for repository incl.
getHTML()
Get rendered html of sub object list.
static getDefaultNewItemGrouping()
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
static _lookupType($a_id, $a_reference=false)
lookup object type
static getObjCreationTooltipText($a_type)
Get object_creation tooltip tab text.
setDisabledObjectTypes(array $a_types)
Set object types which may not be created.
parsePersonalWorkspace()
Parse creatable sub objects for personal workspace.
Render add new item selector.
__construct($a_parent_ref_id)
Constructor.
render()
Add new item selection to current page incl.
setAfterCreationCallback($a_ref_id)
Set after creation callback.
const NEW_ITEM_GROUP_TYPE_GROUP