4 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
37 $this->db = $DIC->database();
38 $this->lng = $DIC->language();
41 $this->ref_id = (int)
$_GET[
"ref_id"];
50 return array(
"ed_insert_amd_page_list",
"pc_amdpl");
58 parent::setNode($a_node);
59 $this->amdpl_node = $a_node->first_child();
68 public function create(&$a_pg_obj, $a_hier_id, $a_pc_id =
"")
72 $this->amdpl_node = $this->dom->create_element(
"AMDPageList");
73 $this->amdpl_node = $this->node->append_child($this->amdpl_node);
79 public function setData(array $a_fields_data, $a_mode = null)
83 $data_id = $this->amdpl_node->get_attribute(
"Id");
85 $ilDB->manipulate(
"DELETE FROM pg_amd_page_list" .
86 " WHERE id = " .
$ilDB->quote($data_id,
"integer"));
88 $data_id =
$ilDB->nextId(
"pg_amd_page_list");
89 $this->amdpl_node->set_attribute(
"Id", $data_id);
92 $this->amdpl_node->set_attribute(
"Mode", (
int) $a_mode);
94 foreach ($a_fields_data as $field_id => $field_data) {
96 "id" => array(
"integer", $data_id)
97 ,
"field_id" => array(
"integer", $field_id)
98 ,
"sdata" => array(
"text", serialize($field_data))
100 $ilDB->insert(
"pg_amd_page_list", $fields);
106 if (is_object($this->amdpl_node)) {
107 return (
int) $this->amdpl_node->get_attribute(
"Mode");
124 if (is_object($this->amdpl_node)) {
125 $a_data_id = $this->amdpl_node->get_attribute(
"Id");
130 $set =
$ilDB->query(
"SELECT * FROM pg_amd_page_list" .
131 " WHERE id = " .
$ilDB->quote($a_data_id,
"integer"));
132 while ($row =
$ilDB->fetchAssoc($set)) {
133 $res[$row[
"field_id"]] = unserialize($row[
"sdata"]);
140 public static function handleCopiedContent(DOMDocument $a_domdoc, $a_self_ass =
true, $a_clone_mobs =
false)
144 $ilDB = $DIC->database();
148 $xpath =
new DOMXPath($a_domdoc);
149 $nodes = $xpath->query(
"//AMDPageList");
150 foreach ($nodes as
$node) {
151 $old_id = $node->getAttribute(
"Id");
156 $new_id =
$ilDB->nextId(
"pg_amd_page_list");
158 $set =
$ilDB->query(
"SELECT * FROM pg_amd_page_list" .
159 " WHERE id = " .
$ilDB->quote($old_id,
"integer"));
160 while ($row =
$ilDB->fetchAssoc($set)) {
162 "id" => array(
"integer", $new_id)
163 ,
"field_id" => array(
"integer", $row[
"field_id"])
164 ,
"sdata" => array(
"text", $row[
"sdata"])
166 $ilDB->insert(
"pg_amd_page_list", $fields);
169 $node->setAttribute(
"Id", $new_id);
183 $wiki_id = $this->
getPage()->getWikiId();
185 $found_result = array();
190 foreach ($recs as $record) {
192 if (isset($list_values[$field->getFieldId()])) {
193 $field_form =
ilADTFactory::getInstance()->getSearchBridgeForDefinitionInstance($field->getADTDefinition(),
true,
false);
194 $field->setSearchValueSerialized($field_form, $list_values[$field->getFieldId()]);
195 $found_pages = $field->searchSubObjects($field_form, $wiki_id,
"wpg");
196 if (is_array($found_ids)) {
197 $found_ids = array_intersect($found_ids, $found_pages);
199 $found_ids = $found_pages;
205 if (is_array($found_ids) && count($found_ids) > 0) {
206 $sql =
"SELECT id,title FROM il_wiki_page" .
207 " WHERE " .
$ilDB->in(
"id", $found_ids,
"",
"integer") .
209 $set =
$ilDB->query($sql);
210 while ($row =
$ilDB->fetchAssoc($set)) {
211 $found_result[$row[
"id"]] = $row[
"title"];
215 return $found_result;
225 if ($this->
getPage()->getParentType() !=
"wpg") {
229 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDRecord.php');
230 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
231 include_once(
'Modules/Wiki/classes/class.ilWikiUtil.php');
233 $wiki_id = $this->
getPage()->getWikiId();
236 $start = strpos($a_html,
"[[[[[AMDPageList;");
237 if (is_int($start)) {
238 $end = strpos($a_html,
"]]]]]", $start);
242 $parts = explode(
";", substr($a_html, $start + 17, $end - $start - 17));
244 $list_id = (int) $parts[0];
245 $list_mode = (
sizeof($parts) == 2)
249 $ltpl =
new ilTemplate(
"tpl.wiki_amd_page_list.html",
true,
true,
"Modules/Wiki");
252 if (
sizeof($pages)) {
253 $ltpl->setCurrentBlock(
"page_bl");
254 foreach ($pages as $page_id => $page_title) {
257 $frag->mFragment = null;
258 $frag->mTextform = $page_title;
261 $ltpl->parseCurrentBlock();
264 $ltpl->touchBlock(
"no_hits_bl");
267 $ltpl->setVariable(
"LIST_MODE", $list_mode ?
"ol" :
"ul");
269 $a_html = substr($a_html, 0, $start) .
271 substr($a_html, $end + 5);
273 $start = strpos($a_html,
"[[[[[AMDPageList;", $start + 5);
275 if (is_int($start)) {
276 $end = strpos($a_html,
"]]]]]", $start);
295 $ilDB = $DIC->database();
299 $set =
$ilDB->query(
"SELECT * FROM pg_amd_page_list" .
300 " WHERE field_id = " .
$ilDB->quote($a_field_id,
"integer"));
301 while ($row =
$ilDB->fetchAssoc($set)) {
302 $data = unserialize(unserialize($row[
"sdata"], [
"allowed_classes" =>
false]), [
"allowed_classes" =>
false]);
303 if (!is_array(
$data)) {
306 $updated_data =
$data;
307 foreach ($mapping as $old_option => $new_option) {
308 if (!in_array($old_option,
$data)) {
311 $idx = array_search($old_option,
$data);
312 if ($new_option !==
'') {
313 $updated_data[$idx] = $new_option;
315 unset($updated_data[$idx]);
319 "sdata" => array(
"text", serialize(serialize($updated_data)))
322 "id" => array(
"integer", $row[
"id"]),
323 "field_id" => array(
"integer", $row[
"field_id"])
325 $ilDB->update(
"pg_amd_page_list", $fields, $primary);
static handleCopiedContent(DOMDocument $a_domdoc, $a_self_ass=true, $a_clone_mobs=false)
init()
Init page content component.
setData(array $a_fields_data, $a_mode=null)
Set list settings.
Class ilPCAMDPageLisdatat.
static makeLink(&$nt, $a_wiki_id, $text='', $query='', $trail='', $prefix='', $a_offline=false)
Make a wiki link, the following formats are supported:
setType($a_type)
Set Type.
static getInstance()
Get singleton.
static _getSelectedRecordsByObject($a_obj_type, $a_ref_id, $a_sub_type="")
Get selected records by object.
modifyPageContentPostXsl($a_html, $a_mode, $a_abstract_only=false)
static migrateField(int $a_field_id, array $mapping)
Migrate search/filter values on advmd change.
foreach($_POST as $key=> $value) $res
setNode($a_node)
Set node.
getFieldValues($a_data_id=null)
Get filter field values.
create(&$a_pg_obj, $a_hier_id, $a_pc_id="")
Create list node in xml.
static getLangVars()
Get lang vars needed for editing.
createPageContentNode($a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
static getInstancesByRecordId($a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.