42 public function setTitle(
string $a_title): void
64 $this->parent_ref_id = $a_wiki_ref_id;
74 $this->blocked = $a_val;
84 $this->rating = $a_val;
94 $this->hide_adv_md = $a_val;
112 "SELECT id FROM il_wiki_page " .
113 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer")
115 if ($rec =
$ilDB->fetchAssoc($set)) {
119 parent::createFromXML();
123 bool $a_import =
false 127 $id =
$ilDB->nextId(
"il_wiki_page");
129 $query =
"INSERT INTO il_wiki_page (" .
148 parent::create($a_import);
164 $this->log->debug(
"collect internal links");
170 $ext_links = count($xpath->query(
'//IntLink'));
171 $ext_links += count($xpath->query(
'//ExtLink'));
173 $footnotes = count($xpath->query(
'//Footnote'));
178 $xml = strip_tags($xml);
181 $num_words = count(explode(
" ", $xml));
184 "int_links" => $int_links,
185 "ext_links" => $ext_links,
186 "footnotes" => $footnotes,
187 "num_words" => $num_words,
188 "num_chars" => $num_chars
190 $this->log->debug(
"handle stats");
199 bool $a_validate =
true,
200 bool $a_no_history =
false 203 $this->log->debug(
"start...");
205 $query =
"UPDATE il_wiki_page SET " .
209 ",rating = " .
$ilDB->quote((
int) $this->
getRating(),
"integer") .
211 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
213 $updated = parent::update($a_validate, $a_no_history);
216 $this->log->debug(
"send notification");
219 $this->log->debug(
"update news");
229 bool $a_omit_page_read =
false 233 $query =
"SELECT * FROM il_wiki_page WHERE id = " .
236 $rec =
$ilDB->fetchAssoc($set);
245 if (!$a_omit_page_read) {
251 public function delete():
void 256 $linking_pages = self::getLinksToPage(
265 if ($wiki->isImportantPage($this->getId())) {
266 $wiki->removeImportantPage($this->
getId());
281 $query =
"DELETE FROM il_wiki_page" .
282 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
289 foreach ($linking_pages as $lp) {
291 "DELETE FROM il_wiki_missing_page " .
292 " WHERE wiki_id = %s AND source_id = %s AND target_name = %s ",
293 array(
"integer",
"integer",
"text"),
297 "INSERT INTO il_wiki_missing_page " .
298 "(wiki_id, source_id, target_name) VALUES " .
300 array(
"integer",
"integer",
"text"),
310 $ilDB = $DIC->database();
313 $query =
"SELECT * FROM il_wiki_page" .
314 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer");
317 while ($rec =
$ilDB->fetchAssoc($set)) {
319 $wiki_page->delete();
332 $ilDB = $DIC->database();
336 $query =
"SELECT id FROM il_wiki_page" .
337 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
338 " AND title = " .
$ilDB->quote($a_title,
"text");
340 if ($rec =
$ilDB->fetchAssoc($set)) {
357 $ilDB = $DIC->database();
361 $query =
"SELECT * FROM il_wiki_page" .
362 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
363 " AND title = " .
$ilDB->quote($a_title,
"text");
365 if ($rec =
$ilDB->fetchAssoc($set)) {
366 return (
int) $rec[
"id"];
376 $ilDB = $DIC->database();
378 $query =
"SELECT * FROM il_wiki_page" .
379 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
381 if ($rec =
$ilDB->fetchAssoc($set)) {
382 return (
string) $rec[
"title"];
392 $ilDB = $DIC->database();
394 $query =
"SELECT wiki_id FROM il_wiki_page" .
395 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
397 if ($rec =
$ilDB->fetchAssoc($set)) {
398 return (
int) $rec[
"wiki_id"];
409 $ilDB = $DIC->database();
411 $pages = parent::getAllPages(
"wpg", $a_wiki_id);
413 $query =
"SELECT * FROM il_wiki_page" .
414 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
419 while ($rec =
$ilDB->fetchAssoc($set)) {
420 if (isset($pages[$rec[
"id"]])) {
421 $pg[$rec[
"id"]] = $pages[$rec[
"id"]];
422 $pg[$rec[
"id"]][
"title"] = $rec[
"title"];
435 $ilDB = $DIC->database();
440 foreach ($sources as
$source) {
441 if ($source[
"type"] ===
"wpg:pg") {
442 $ids[] = $source[
"id"];
446 $query =
"SELECT * FROM il_wiki_page wp, page_object p" .
447 " WHERE " .
$ilDB->in(
"wp.id", $ids,
false,
"integer") .
448 " AND wp.id = p.page_id AND p.parent_type = " .
$ilDB->quote(
"wpg",
"text") .
449 " AND wp.wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
454 while ($rec =
$ilDB->fetchAssoc($set)) {
455 $pages[] = array_merge($rec, array(
"user" => $rec[
"last_change_user"],
456 "date" => $rec[
"last_change"]));
467 $ilDB = $DIC->database();
469 $pages = self::getAllWikiPages($a_wiki_id);
472 foreach ($pages as $k => $page) {
475 foreach ($sources as
$source) {
476 if ($source[
"type"] ===
"wpg:pg") {
477 $ids[] = $source[
"id"];
480 $query =
"SELECT count(*) cnt FROM il_wiki_page" .
481 " WHERE " .
$ilDB->in(
"id", $ids,
false,
"integer") .
482 " AND wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
485 $rec =
$ilDB->fetchAssoc($set);
486 if (count($ids) === 0 || ($rec && (
int) $rec[
"cnt"] === 0)) {
502 $ilDB = $DIC->database();
506 $query =
"SELECT id FROM il_wiki_page" .
507 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
508 " AND title = " .
$ilDB->quote($a_title,
"text");
511 if (
$ilDB->fetchAssoc($set)) {
521 return parent::getParentObjectContributors(
"wpg", $a_wiki_id);
527 return parent::getPageContributors(
"wpg", $a_page_id);
535 $this->log->debug(
"start...");
538 parent::saveInternalLinks($a_domdoc);
542 $this->log->debug(
"this page <- other pages.");
546 $set =
$ilDB->queryF(
547 "SELECT * FROM il_wiki_missing_page WHERE " .
548 " wiki_id = %s AND target_name = %s",
549 array(
"integer",
"text"),
552 while ($anmiss =
$ilDB->fetchAssoc($set)) {
553 $this->log->debug(
"link found, source: " . $anmiss[
"source_id"] .
", target" .
558 $anmiss[
"source_id"],
567 "DELETE FROM il_wiki_missing_page WHERE " .
568 " wiki_id = %s AND target_name = %s",
569 array(
"integer",
"text"),
575 $this->log->debug(
"this page -> other pages.");
579 "DELETE FROM il_wiki_missing_page WHERE " .
580 " wiki_id = %s AND source_id = %s",
581 array(
"integer",
"integer"),
586 $xml = $a_domdoc->saveXML();
588 foreach ($int_wiki_links as $wlink) {
589 $this->log->debug(
"found link : " . $wlink);
590 $page_id = self::_getPageIdForWikiTitle($this->
getWikiId(), $wlink);
592 $this->log->debug(
"save link " .
593 $this->
getId() .
", target " . $page_id);
603 "DELETE FROM il_wiki_missing_page WHERE" .
604 " wiki_id = %s AND source_id = %s AND target_name = %s",
605 array(
"integer",
"integer",
"text"),
608 $this->log->debug(
"target does not exist, save missing page source" .
609 $this->
getId() .
", target " . $wlink);
611 "INSERT INTO il_wiki_missing_page (wiki_id, source_id, target_name)" .
612 " VALUES (%s,%s,%s)",
613 array(
"integer",
"integer",
"text"),
618 $this->log->debug(
"...end");
628 return self::getPageIdForTitle($a_wiki_id, $a_title);
636 $ilDB = $DIC->database();
638 $query =
"SELECT wp.*, po.view_cnt as cnt FROM il_wiki_page wp, page_object po" .
639 " WHERE wp.wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
640 " AND wp.id = po.page_id " .
641 " AND po.parent_type = " .
$ilDB->quote(
"wpg",
"text") .
" " .
642 " ORDER BY po.view_cnt";
646 while ($rec =
$ilDB->fetchAssoc($set)) {
658 $ilDB = $DIC->database();
661 $query =
"SELECT count(*) as cnt FROM il_wiki_page" .
662 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer");
664 $r =
$ilDB->fetchAssoc($s);
674 $ilDB = $DIC->database();
676 $cnt = self::countPages($a_wiki_id);
682 $random = new \ilRandom();
683 $rand = $random->int(1, $cnt);
686 $ilDB->setLimit(1, $rand);
687 $query =
"SELECT title FROM il_wiki_page" .
688 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer");
690 $r =
$ilDB->fetchAssoc($s);
698 $pages = parent::getNewPages(
"wpg", $a_wiki_id);
699 foreach ($pages as $k => $page) {
700 $pages[$k][
"title"] = self::lookupTitle($page[
"id"]);
715 $ilDB = $DIC->database();
717 $query =
"SELECT wiki_id FROM il_wiki_page" .
718 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
720 if ($rec =
$ilDB->fetchAssoc($set)) {
721 return (
int) $rec[
"wiki_id"];
736 $a_new_name = str_replace(array(
"<",
">"),
'', $a_new_name);
739 $a_new_name = trim(preg_replace(
'!\s+!',
' ', $a_new_name));
742 $pg_id = self::_getPageIdForWikiTitle($this->
getWikiId(), $page_title);
744 $xml_new_name = str_replace(
"&",
"&", $a_new_name);
746 if ($pg_id == 0 || $pg_id == $this->
getId()) {
749 $this->log->debug(
"nr of pages linking to renamed page: " . count($sources));
750 foreach ($sources as $s) {
754 $this->log->debug(
"Getting links of page " . $s[
"id"]);
756 $wpage->getXMLContent(),
761 $this->log->debug(
"nr internal links: " . count($col));
762 $new_content = $wpage->getXMLContent();
763 foreach ($col as
$c) {
765 $this->log->debug(
"found link " . print_r($c,
true));
780 $t1 = preg_replace(
'/\xC2\xA0/',
' ', $t1);
781 $t2 = preg_replace(
'/\xC2\xA0/',
' ', $t2);
783 $set =
$ilDB->query($q =
"SELECT " .
$ilDB->quote($t1,
"text") .
" = " .
$ilDB->quote($t2,
"text") .
" isequal");
784 $rec =
$ilDB->fetchAssoc($set);
786 if ($rec[
"isequal"]) {
789 "[[" . $c[
"nt"]->mTextform .
"]]",
790 "[[" . $xml_new_name .
"]]",
793 if ($c[
"text"] !=
"") {
796 "[[" . $c[
"text"] .
"]]",
797 "[[" . $xml_new_name .
"]]",
801 $add = ($c[
"text"] !=
"")
806 "[[" . $c[
"nt"]->mTextform . $add .
"]]",
807 "[[" . $xml_new_name . $add .
"]]",
812 $wpage->setXMLContent($new_content);
832 bool $a_update =
false 837 $default_visibility = ($news_set->get(
"default_visibility") !=
"")
838 ? $news_set->get(
"default_visibility")
843 $news_item->setContext(
850 $news_item->setTitle($this->
getTitle());
851 $news_item->setContentTextIsLangVar(
true);
852 $news_item->setContent(
"wiki_news_page_created");
853 $news_item->setUserId(
$ilUser->getId());
854 $news_item->setVisibility($default_visibility);
855 $news_item->create();
868 $news_item->setContent(
"wiki_news_page_changed");
869 $news_item->setUserId(
$ilUser->getId());
870 $news_item->setTitle($this->
getTitle());
871 $news_item->setContentTextIsLangVar(
true);
872 $news_item->update(
true);
875 $news_item->setContext(
882 $news_item->setTitle($this->
getTitle());
883 $news_item->setContentTextIsLangVar(
true);
884 $news_item->setContent(
"wiki_news_page_changed");
885 $news_item->setUserId(
$ilUser->getId());
886 $news_item->setVisibility($default_visibility);
887 $news_item->create();
894 bool $a_offline =
false 897 $href =
"./goto.php?target=wiki_wpage_" . $a_target;
899 $href = ILIAS_HTTP_PATH .
"/goto.php?target=wiki_wpage_" . $a_target;
912 $templates = array();
914 $templates[] = array(
"id" => $t[
"wpage_id"],
"parent_type" =>
"wpg",
"title" => $t[
"title"]);
925 $ilDB = $DIC->database();
927 $set =
$ilDB->query(
"SELECT DISTINCT title FROM il_wiki_page" .
928 " WHERE wiki_id = " .
$ilDB->quote($a_wiki_id,
"integer") .
929 " AND " .
$ilDB->like(
"title",
"text",
"%" . $a_term .
"%") .
932 while ($rec =
$ilDB->fetchAssoc($set)) {
933 $res[] = $rec[
"title"];
944 $ilDB = $DIC->database();
946 $query =
"SELECT * FROM il_wiki_page" .
947 " WHERE id = " .
$ilDB->quote($a_page_id,
"integer");
949 if ($rec =
$ilDB->fetchAssoc($set)) {
950 return (
bool) $rec[
"hide_adv_md"];
static _getSourcesOfTarget(string $a_target_type, int $a_target_id, int $a_target_inst)
get all sources of a link target
static getNewWikiPages(int $a_wiki_id)
static getLastNewsIdForContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="", bool $a_only_today=false)
Get last news id of news set related to a certain context.
static getPagesForSearch(int $a_wiki_id, string $a_term)
isAdvancedMetadataHidden()
getContentTemplates()
Get content templates.
static countPages(int $a_wiki_id)
hideAdvancedMetadata(bool $a_val)
static lookupWikiId(int $a_page_id)
static getAllWikiPages(int $a_wiki_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _saveLink(string $a_source_type, int $a_source_id, string $a_target_type, int $a_target_id, int $a_target_inst=0, string $a_source_lang="-")
save internal link information
static getWikiPageContributors(int $a_page_id)
rename(string $a_new_name)
Rename page.
static sendNotification(string $a_action, int $a_type, int $a_wiki_ref_id, int $a_page_id, ?string $a_comment=null)
static _getPageIdForWikiTitle(int $a_wiki_id, string $a_title)
static strLen(string $a_string)
static getPageIdForTitle(int $a_wiki_id, string $a_title)
Get wiki page object for id and title.
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
setTitle(string $a_title)
create(bool $a_import=false)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static collectInternalLinks(string $s, int $a_wiki_id, bool $a_collect_non_ex=false, string $mode=IL_WIKI_MODE_COLLECT)
Collect internal wiki links of a string.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const NEWS_NOTICE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static lookupAdvancedMetadataHidden(int $a_page_id)
static _deleteAllLinksToTarget(string $a_target_type, int $a_target_id, int $a_target_inst=0)
Delete all links to a given target.
static getRandomPage(int $a_wiki_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static writeStartPage(int $a_id, string $a_name)
static _lookupStartPage(int $a_wiki_id)
static getWikiContributors(int $a_wiki_id)
setWikiRefId(int $a_wiki_ref_id)
update(bool $a_validate=true, bool $a_no_history=false)
static deleteAllPagesOfWiki(int $a_wiki_id)
static getPopularPages(int $a_wiki_id)
updateNews(bool $a_update=false)
static lookupTitle(int $a_page_id)
A news item can be created by different sources.
static getOrphanedPages(int $a_wiki_id)
static makeDbTitle(string $a_par)
static getGotoForWikiPageTarget(string $a_target, bool $a_offline=false)
afterUpdate(DOMDocument $domdoc, string $xml)
static handleEvent(int $a_event, ilWikiPage $a_page_obj, ?int $a_user_id=null, array $a_additional_data=null)
Handle wiki page event.
const IL_WIKI_MODE_EXT_COLLECT
static lookupObjIdByPage(int $a_page_id)
returns the wiki/object id to a given page id
saveInternalLinks(DOMDocument $a_domdoc)
static _wikiPageExists(int $a_wiki_id, string $a_title)
static removeForObject(int $type, int $id)
Remove all notifications for given object.
read(bool $a_omit_page_read=false)
static exists(int $a_wiki_id, string $a_title)
Checks whether a page with given title exists.
preparePageForCompare(ilPageObject $page)
static getLinksToPage(int $a_wiki_id, int $a_page_id)