19 declare(strict_types=1);
32 protected \ilDBInterface
$db;
44 return $this->data->importantPage(
45 (
int) $rec[
"page_id"],
56 $set = $this->db->query(
57 "SELECT * FROM il_wiki_imp_pages WHERE " .
58 " wiki_id = " . $this->db->quote($wiki_id,
"integer") .
" ORDER BY ord ASC " 60 while ($rec = $this->db->fetchAssoc($set)) {
68 foreach ($this->
getList($wiki_id) as $ip) {
69 $ipages[$ip->getId()][
"page_id"] = $ip->getId();
70 $ipages[$ip->getId()][
"ord"] = $ip->getOrder();
71 $ipages[$ip->getId()][
"indent"] = $ip->getIndent();
72 $ipages[$ip->getId()][
"wiki_id"] = $wiki_id;
80 $set = $this->db->query(
81 "SELECT MAX(ord) as m FROM il_wiki_imp_pages WHERE " .
82 " wiki_id = " . $this->db->quote($wiki_id,
"integer")
84 $rec = $this->db->fetchAssoc($set);
85 return (
int) $rec[
"m"];
100 $this->db->manipulate(
"INSERT INTO il_wiki_imp_pages " .
101 "(wiki_id, ord, indent, page_id) VALUES (" .
102 $this->db->quote($wiki_id,
"integer") .
"," .
103 $this->db->quote($nr,
"integer") .
"," .
104 $this->db->quote($indent,
"integer") .
"," .
105 $this->db->quote($page_id,
"integer") .
114 $set = $this->db->query(
115 "SELECT * FROM il_wiki_imp_pages WHERE " .
116 " wiki_id = " . $this->db->quote($wiki_id,
"integer") .
" AND " .
117 " page_id = " . $this->db->quote($page_id,
"integer")
119 if ($this->db->fetchAssoc($set)) {
129 $this->db->manipulate(
130 "DELETE FROM il_wiki_imp_pages WHERE " 131 .
" wiki_id = " . $this->db->quote($wiki_id,
"integer")
132 .
" AND page_id = " . $this->db->quote($page_id,
"integer")
144 foreach ($ipages as $k => $v) {
145 if (isset($a_ord[$v[
"page_id"]])) {
146 $ipages[$k][
"ord"] = (
int) $a_ord[$v[
"page_id"]];
148 if (isset($a_indent[$v[
"page_id"]])) {
149 $ipages[$k][
"indent"] = (
int) $a_indent[$v[
"page_id"]];
157 foreach ($ipages as $k => $v) {
158 if ($v[
"indent"] == 2 && $c_indent == 0) {
159 $ipages[$k][
"indent"] = 1;
162 $c_indent = $ipages[$k][
"indent"];
167 foreach ($ipages as $k => $v) {
168 $this->db->manipulate(
169 $q =
"UPDATE il_wiki_imp_pages SET " .
170 " ord = " . $this->db->quote($ord,
"integer") .
"," .
171 " indent = " . $this->db->quote($v[
"indent"],
"integer") .
172 " WHERE wiki_id = " . $this->db->quote($wiki_id,
"integer") .
173 " AND page_id = " . $this->db->quote($v[
"page_id"],
"integer")
187 foreach ($ipages as $k => $v) {
188 if ($v[
"indent"] == 2 && $c_indent == 0) {
189 $ipages[$k][
"indent"] = 1;
191 $c_indent = $ipages[$k][
"indent"];
195 foreach ($ipages as $k => $v) {
196 $this->db->manipulate(
197 $q =
"UPDATE il_wiki_imp_pages SET " .
198 " ord = " . $this->db->quote($ord,
"integer") .
199 ", indent = " . $this->db->quote($v[
"indent"],
"integer") .
200 " WHERE wiki_id = " . $this->db->quote($v[
"wiki_id"],
"integer") .
201 " AND page_id = " . $this->db->quote($v[
"page_id"],
"integer")
209 $set = $this->db->query(
210 "SELECT DISTINCT page_id FROM il_wiki_imp_pages WHERE " .
211 " wiki_id = " . $this->db->quote($wiki_id,
"integer")
214 while ($rec = $this->db->fetchAssoc($set)) {
215 $ids[] = (
int) $rec[
"page_id"];
InternalDataService $data
removeImportantPage(int $wiki_id, int $page_id)
Wiki internal data service.
__construct(InternalDataService $data, \ilDBInterface $db)
isImportantPage(int $wiki_id, int $page_id)
getListAsArray(int $wiki_id)
getMaxOrdNr(int $wiki_id)
getImportantPageIds(int $wiki_id)
saveOrderingAndIndentation(int $wiki_id, array $a_ord, array $a_indent)
add(int $wiki_id, int $page_id, int $nr=0, int $indent=0)
fixImportantPagesNumbering(int $wiki_id)
getPageInfoFromRecord(array $rec)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)