19 declare(strict_types=1);
28 public function __construct(
int $a_id,
bool $a_call_by_reference =
true)
34 public function delete():
bool 44 $ilDB = $DIC->database();
47 $pos =
$ilDB->query(
"SELECT max(pos) mpos FROM il_new_item_grp");
48 $pos =
$ilDB->fetchAssoc($pos);
49 $pos = (
int) $pos[
"mpos"];
52 $seq =
$ilDB->nextID(
"il_new_item_grp");
54 $ilDB->manipulate(
"INSERT INTO il_new_item_grp" .
55 " (id, titles, pos) VALUES (" .
56 $ilDB->quote($seq,
"integer") .
57 ", " .
$ilDB->quote(serialize($a_titles),
"text") .
58 ", " .
$ilDB->quote($pos,
"integer") .
67 $ilDB = $DIC->database();
69 $ilDB->manipulate(
"UPDATE il_new_item_grp" .
70 " SET titles = " .
$ilDB->quote(serialize($a_titles),
"text") .
71 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
79 $ilDB = $DIC->database();
83 $sub_items = self::getNewItemGroupSubItems();
84 $sub_items = $sub_items[$a_id] ??
null;
86 foreach ($sub_items as $obj_type) {
87 $old_pos =
$ilSetting->get(
"obj_add_new_pos_" . $obj_type);
88 if (strlen($old_pos) === 8) {
89 $new_pos =
"9999" . substr($old_pos, 4);
90 $ilSetting->set(
"obj_add_new_pos_" . $obj_type, $new_pos);
91 $ilSetting->set(
"obj_add_new_pos_grp_" . $obj_type,
'0');
96 $ilDB->manipulate(
"DELETE FROM il_new_item_grp" .
97 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
105 $ilDB = $DIC->database();
106 $lng = $DIC->language();
107 $ilUser = $DIC->user();
110 $usr_lng = $ilUser->getLanguage();
114 $set =
$ilDB->query(
"SELECT * FROM il_new_item_grp ORDER BY pos");
115 while ($row =
$ilDB->fetchAssoc($set)) {
116 if ($row[
'titles'] ===
null) {
119 $row[
"titles"] = unserialize($row[
"titles"], [
"allowed_classes" =>
false]);
121 $title = $row[
"titles"][$usr_lng] ??
false;
123 $title = $row[
"titles"][$def_lng] ??
false;
126 $title = array_shift($row[
"titles"]);
130 $res[$row[
"id"]] = $row;
140 $ilDB = $DIC->database();
144 foreach (array_keys($a_order) as
$id) {
147 $ilDB->manipulate(
"UPDATE il_new_item_grp" .
148 " SET pos = " .
$ilDB->quote($pos,
"integer") .
149 " WHERE id = " .
$ilDB->quote($id,
"integer"));
157 $component_repository = $DIC[
"component.repository"];
158 $objDefinition = $DIC[
"objDefinition"];
163 foreach ($component_repository->getComponents() as $mod) {
169 if (count($rep_types) > 0) {
170 foreach ($rep_types as $ridx => $rt) {
172 if ($rt[
"repository"]) {
175 unset($rep_types[$ridx]);
180 foreach ($rep_types as $rt) {
187 $pl_names = $component_repository->getPluginSlotById(
"robj")->getActivePlugins();
188 foreach ($pl_names as
$plugin) {
189 $res[] = $plugin->getId();
203 foreach (self::getAllObjTypes() as
$type) {
204 $pos_grp =
$ilSetting->get(
"obj_add_new_pos_grp_" . $type,
'0');
215 $lng = $DIC->language();
220 "content" => [
"file",
"webr",
"feed",
"copa",
"wiki",
"blog",
"lm",
"htlm",
"sahs",
'cmix',
'lti',
"lso",
"glo",
"dcl",
"bibl",
"mcst",
"mep"],
221 "organisation" => [
"fold",
"sess",
"cat",
"catr",
"crs",
"crsr",
"grp",
"grpr",
"itgr",
"book",
"prg",
"prgr"],
222 "communication" => [
"frm",
"chtr"],
223 "assessment" => [
"exc",
"tst",
"qpl",
"iass"],
224 "feedback" => [
"poll",
"svy",
"spl"],
225 "templates" => [
"prtt"]
229 foreach ($groups as $group => $items) {
235 $res[
"groups"][$grp_id] = [
242 foreach ($items as $idx => $item) {
243 $res[
"items"][$item] = $grp_id;
244 $res[
"sort"][$item] = str_pad((
string) $pos, 4,
"0", STR_PAD_LEFT) .
245 str_pad((
string) ($idx + 1), 4,
"0", STR_PAD_LEFT);
259 $ilSetting->delete(
"obj_dis_creation_" . $a_type);
260 $ilSetting->delete(
"obj_add_new_pos_" . $a_type);
261 $ilSetting->delete(
"obj_add_new_pos_grp_" . $a_type);
__construct(int $a_id, bool $a_call_by_reference=true)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getUserLanguage()
Return language of user.
getDefaultLanguage()
Return default language.
static getNewItemGroups()
static getNewItemGroupSubItems()
static deleteObjectType(string $a_type)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static deleteNewItemGroup(int $a_id)
static updateNewItemGroup(int $a_id, array $a_titles)
static getDefaultNewItemGrouping()
static updateNewItemGroupOrder(array $a_order)
static addNewItemGroup(array $a_titles)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
Class ilObjRepositorySettings.