4 require_once(
"./Services/COPage/classes/class.ilPCDataTable.php");
5 require_once(
"./Services/COPage/classes/class.ilPCTableGUI.php");
6 require_once(
"./Services/COPage/classes/class.ilPageContentGUI.php");
40 public function __construct(&$a_pg_obj, &$a_content_obj, $a_hier_id, $a_pc_id =
"")
44 $this->main_tpl = $DIC->ui()->mainTemplate();
45 $this->lng = $DIC->language();
46 $this->ctrl = $DIC->ctrl();
47 $this->tabs = $DIC->tabs();
49 $this->
setCharacteristics(array(
"StandardTable" => $this->lng->txt(
"cont_StandardTable")));
50 $this->tool_context = $DIC->globalScreen()->tool()->context();
61 $next_class = $this->ctrl->getNextClass($this);
64 $cmd = $this->ctrl->getCmd();
66 switch ($next_class) {
94 include_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
96 $this->tpl->addBlockFile(
"ADM_CONTENT",
"adm_content",
"tpl.tabledata.html",
"Services/COPage");
99 $dtpl->setVariable(
"FORMACTION", $this->ctrl->getFormAction($this,
"tableAction"));
100 $dtpl->setVariable(
"BB_MENU", $this->
getBBMenu(
"cell_0_0"));
105 $this->tpl->addJavascript(
"./Services/COPage/phpBB/3_0_5/editor.js");
106 $this->tpl->addJavascript(
"./Services/COPage/js/page_editing.js");
107 $this->tpl->addJavascript(
"./Services/COPage/js/paragraph_editing.js");
111 $path =
"//PageContent[@HierId='" . $this->
getHierId() .
"']" .
115 for (
$i = 0;
$i < count(
$res->nodeset);
$i++) {
117 $path2 =
"//PageContent[@HierId='" . $this->
getHierId() .
"']" .
118 "/Table/TableRow[$i+1]/TableData";
123 for ($j = 0; $j < count($res2->nodeset); $j++) {
125 $dtpl->touchBlock(
"empty_td");
129 if (count($res2->nodeset) == 1) {
132 $move_type =
"forward";
134 } elseif ($j == (count($res2->nodeset) - 1)) {
135 $move_type =
"backward";
139 $dtpl->setCurrentBlock(
"col_icon");
140 $dtpl->setVariable(
"COL_ICON_ALT",
$lng->txt(
"content_column"));
142 $dtpl->setVariable(
"COL_ONCLICK",
"COL_" . $move_type);
143 $dtpl->setVariable(
"NR", $j);
144 $dtpl->parseCurrentBlock();
146 $dtpl->setCurrentBlock(
"row");
147 $dtpl->parseCurrentBlock();
151 for ($j = 0; $j < count($res2->nodeset); $j++) {
155 if (count(
$res->nodeset) == 1) {
158 $move_type =
"forward";
160 } elseif (
$i == (count(
$res->nodeset) - 1)) {
161 $move_type =
"backward";
165 $dtpl->setCurrentBlock(
"row_icon");
166 $dtpl->setVariable(
"ROW_ICON_ALT",
$lng->txt(
"content_row"));
168 $dtpl->setVariable(
"ROW_ONCLICK",
"ROW_" . $move_type);
169 $dtpl->setVariable(
"NR",
$i);
170 $dtpl->parseCurrentBlock();
174 if ($res2->nodeset[$j]->get_attribute(
"Hidden") !=
"Y") {
175 $dtpl->setCurrentBlock(
"cell");
177 if (is_array(
$_POST[
"cmd"]) && key(
$_POST[
"cmd"]) ==
"update") {
183 $dtpl->setVariable(
"PAR_TA_NAME",
"cell[" .
$i .
"][" . $j .
"]");
184 $dtpl->setVariable(
"PAR_TA_ID",
"cell_" .
$i .
"_" . $j);
185 $dtpl->setVariable(
"PAR_TA_CONTENT", $s_text);
187 $cs = $res2->nodeset[$j]->get_attribute(
"ColSpan");
188 $rs = $res2->nodeset[$j]->get_attribute(
"RowSpan");
192 $dtpl->setVariable(
"COLSPAN",
'colspan="' . $cs .
'"');
193 $dtpl->setVariable(
"WIDTH", (140 + ($cs - 1) * 146));
196 $dtpl->setVariable(
"ROWSPAN",
'rowspan="' . $rs .
'"');
197 $dtpl->setVariable(
"HEIGHT", (80 + ($rs - 1) * 86));
199 $dtpl->parseCurrentBlock();
202 $dtpl->setCurrentBlock(
"row");
203 $dtpl->parseCurrentBlock();
207 $types = array(
"row",
"col");
208 $moves = array(
"none",
"backward",
"both",
"forward");
210 "row" => array(
"newRowAfter" =>
"cont_ed_new_row_after",
211 "newRowBefore" =>
"cont_ed_new_row_before",
212 "moveRowUp" =>
"cont_ed_row_up",
213 "moveRowDown" =>
"cont_ed_row_down",
214 "deleteRow" =>
"cont_ed_delete_row"),
215 "col" => array(
"newColAfter" =>
"cont_ed_new_col_after",
216 "newColBefore" =>
"cont_ed_new_col_before",
217 "moveColLeft" =>
"cont_ed_col_left",
218 "moveColRight" =>
"cont_ed_col_right",
219 "deleteCol" =>
"cont_ed_delete_col")
221 foreach ($types as
$type) {
222 foreach ($moves as $move) {
223 foreach ($commands[$type] as $command => $lang_var) {
224 if ($move ==
"none" && (substr($command, 0, 4) ==
"move" || substr($command, 0, 6) ==
"delete")) {
227 if (($move ==
"backward" && (in_array($command, array(
"movedown",
"moveright")))) ||
228 ($move ==
"forward" && (in_array($command, array(
"moveup",
"moveleft"))))) {
231 $this->tpl->setCurrentBlock(
"menu_item");
232 $this->tpl->setVariable(
"MENU_ITEM_TITLE",
$lng->txt($lang_var));
233 $this->tpl->setVariable(
"CMD", $command);
234 $this->tpl->setVariable(
"TYPE", $type);
235 $this->tpl->parseCurrentBlock();
237 $this->tpl->setCurrentBlock(
"menu");
238 $this->tpl->setVariable(
"TYPE", $type);
239 $this->tpl->setVariable(
"MOVE", $move);
240 $this->tpl->parseCurrentBlock();
245 $this->tpl->setCurrentBlock(
"commands");
246 $this->tpl->setVariable(
"BTN_NAME",
"update");
247 $this->tpl->setVariable(
"BTN_TEXT", $this->lng->txt(
"save"));
248 $this->tpl->parseCurrentBlock();
250 $this->tpl->setVariable(
252 $ilCtrl->getFormAction($this,
"tableAction")
254 $this->tpl->setVariable(
"TXT_ACTION", $this->lng->txt(
"cont_table"));
260 public function update($a_redirect =
true)
265 include_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
269 if (is_array(
$_POST[
"cell"])) {
270 foreach (
$_POST[
"cell"] as
$i => $row) {
271 if (is_array($row)) {
272 foreach ($row as $j => $cell) {
276 $this->content_obj->getLanguage()
283 $this->updated = $this->content_obj->setData(
$data);
285 if ($this->updated !==
true) {
290 $this->updated = $this->pg_obj->update();
293 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
294 $this->ctrl->redirect($this,
"editData");
306 if (
$_POST[
"cancel_update"]) {
308 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
312 include_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
313 include_once(
"./Services/COPage/classes/class.ilPCParagraphGUI.php");
315 foreach (
$_POST as $k => $content) {
316 if (substr($k, 0, 5) !=
"cell_") {
322 $p1 = strpos($div,
'>');
323 $div = substr($div, $p1 + 1);
324 $div =
"<div class='ilc_text_block_TableContent'>" . $div;
326 if ($text ===
false) {
327 $ilCtrl->returnToParent($this,
"jump" . $this->hier_id);
329 $text = $text[
"text"];
333 $this->content_obj->getLanguage(),
340 $id = explode(
"_", $k);
341 $data[(int) $id[1]][(
int) $id[2]] = $text;
345 $this->updated = $this->content_obj->setData(
$data);
347 if ($this->updated !==
true) {
352 $this->updated = $this->pg_obj->update();
357 $this->pg_obj->addHierIDs();
359 if (
$_POST[
"tab_cmd"] !=
"") {
360 $cell_hier_id = (
$_POST[
"tab_cmd_type"] ==
"col")
361 ? $this->hier_id .
"_1_" . (
$_POST[
"tab_cmd_id"] + 1)
362 : $this->hier_id .
"_" . (
$_POST[
"tab_cmd_id"] + 1) .
"_1";
363 $cell_obj = $this->pg_obj->getContentObject($cell_hier_id);
364 if (is_object($cell_obj)) {
365 $tab_cmd =
$_POST[
"tab_cmd"];
366 $cell_obj->$tab_cmd();
367 $ret = $this->pg_obj->update();
376 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
378 if (
$_POST[
"save_return"]) {
379 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
381 $this->ctrl->redirect($this,
"editData");
401 $this->pg_obj->stripHierIDs();
402 $this->pg_obj->addHierIDs();
403 $ilCtrl->setParameter($this,
"hier_id", $this->content_obj->readHierId());
404 $ilCtrl->setParameter($this,
"pc_id", $this->content_obj->readPCId());
405 $this->content_obj->setHierId($this->content_obj->readHierId());
406 $this->
setHierId($this->content_obj->readHierId());
407 $this->content_obj->setPCId($this->content_obj->readPCId());
419 $this->pg_obj->addHierIDs();
421 $cell_hier_id = (
$_POST[
"type"] ==
"col")
422 ? $this->hier_id .
"_1_" . (
$_POST[
"id"] + 1)
423 : $this->hier_id .
"_" . (
$_POST[
"id"] + 1) .
"_1";
424 $cell_obj = $this->pg_obj->getContentObject($cell_hier_id);
425 if (is_object($cell_obj)) {
426 $action = (string) (
$_POST[
"action"]);
427 $cell_obj->$action();
428 $_SESSION[
"il_pg_error"] = $this->pg_obj->update();
430 $ilCtrl->redirect($this,
"editData");
445 $ilCtrl->getLinkTarget($this,
"editData"),
480 include_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
484 $dtpl =
new ilTemplate(
"tpl.tabledata2.html",
true,
true,
"Services/COPage");
485 $dtpl->setVariable(
"FORMACTION", $this->ctrl->getFormAction($this,
"tableAction"));
490 $ilCtrl->getFormAction($this,
"updateJS")
495 $path =
"//PageContent[@HierId='" . $this->
getHierId() .
"']" .
499 for (
$i = 0;
$i < count(
$res->nodeset);
$i++) {
501 $path2 =
"//PageContent[@HierId='" . $this->
getHierId() .
"']" .
502 "/Table/TableRow[$i+1]/TableData";
507 for ($j = 0; $j < count($res2->nodeset); $j++) {
509 $dtpl->touchBlock(
"empty_td");
513 if (count($res2->nodeset) == 1) {
516 $move_type =
"forward";
518 } elseif ($j == (count($res2->nodeset) - 1)) {
519 $move_type =
"backward";
523 $dtpl->setCurrentBlock(
"col_icon");
524 $dtpl->setVariable(
"COL_ICON_ALT",
$lng->txt(
"content_column"));
526 $dtpl->setVariable(
"COL_ONCLICK",
"COL_" . $move_type);
527 $dtpl->setVariable(
"NR", $j);
528 $dtpl->parseCurrentBlock();
530 $dtpl->setCurrentBlock(
"row");
531 $dtpl->parseCurrentBlock();
535 for ($j = 0; $j < count($res2->nodeset); $j++) {
539 if (count(
$res->nodeset) == 1) {
542 $move_type =
"forward";
544 } elseif (
$i == (count(
$res->nodeset) - 1)) {
545 $move_type =
"backward";
549 $dtpl->setCurrentBlock(
"row_icon");
550 $dtpl->setVariable(
"ROW_ICON_ALT",
$lng->txt(
"content_row"));
552 $dtpl->setVariable(
"ROW_ONCLICK",
"ROW_" . $move_type);
553 $dtpl->setVariable(
"NR",
$i);
554 $dtpl->parseCurrentBlock();
558 if ($res2->nodeset[$j]->get_attribute(
"Hidden") !=
"Y") {
559 $dtpl->setCurrentBlock(
"cell");
561 if (is_array(
$_POST[
"cmd"]) && key(
$_POST[
"cmd"]) ==
"update") {
565 $this->content_obj->getCellText(
$i, $j),
569 include_once(
"./Services/COPage/classes/class.ilPCParagraphGUI.php");
573 $this->content_obj->readPCId() .
"_" .
$i .
"_" . $j
578 $s_text = str_replace(
"{",
"{", $s_text);
579 $s_text = str_replace(
"}",
"}", $s_text);
581 $dtpl->setVariable(
"PAR_TA_NAME",
"cell[" .
$i .
"][" . $j .
"]");
582 $dtpl->setVariable(
"PAR_TA_ID",
"cell_" .
$i .
"_" . $j);
584 $dtpl->setVariable(
"PAR_TA_CONTENT", $s_text);
586 $cs = $res2->nodeset[$j]->get_attribute(
"ColSpan");
587 $rs = $res2->nodeset[$j]->get_attribute(
"RowSpan");
588 $dtpl->setVariable(
"WIDTH",
"140");
589 $dtpl->setVariable(
"HEIGHT",
"80");
591 $dtpl->setVariable(
"COLSPAN",
'colspan="' . $cs .
'"');
592 $dtpl->setVariable(
"WIDTH", (140 + ($cs - 1) * 146));
595 $dtpl->setVariable(
"ROWSPAN",
'rowspan="' . $rs .
'"');
596 $dtpl->setVariable(
"HEIGHT", (80 + ($rs - 1) * 86));
598 $dtpl->parseCurrentBlock();
601 $dtpl->setCurrentBlock(
"row");
602 $dtpl->parseCurrentBlock();
606 $types = array(
"row",
"col");
607 $moves = array(
"none",
"backward",
"both",
"forward");
609 "row" => array(
"newRowAfter" =>
"cont_ed_new_row_after",
610 "newRowBefore" =>
"cont_ed_new_row_before",
611 "moveRowUp" =>
"cont_ed_row_up",
612 "moveRowDown" =>
"cont_ed_row_down",
613 "deleteRow" =>
"cont_ed_delete_row"),
614 "col" => array(
"newColAfter" =>
"cont_ed_new_col_after",
615 "newColBefore" =>
"cont_ed_new_col_before",
616 "moveColLeft" =>
"cont_ed_col_left",
617 "moveColRight" =>
"cont_ed_col_right",
618 "deleteCol" =>
"cont_ed_delete_col")
621 foreach ($types as
$type) {
622 foreach ($moves as $move) {
623 foreach ($commands[$type] as $command => $lang_var) {
624 if ($move ==
"none" && (substr($command, 0, 4) ==
"move" || substr($command, 0, 6) ==
"delete")) {
627 if (($move ==
"backward" && (in_array($command, array(
"movedown",
"moveright")))) ||
628 ($move ==
"forward" && (in_array($command, array(
"moveup",
"moveleft"))))) {
631 $dtpl->setCurrentBlock(
"menu_item");
632 $dtpl->setVariable(
"MENU_ITEM_TITLE",
$lng->txt($lang_var));
633 $dtpl->setVariable(
"CMD", $command);
634 $dtpl->setVariable(
"TYPE", $type);
635 $dtpl->parseCurrentBlock();
637 $dtpl->setCurrentBlock(
"menu");
638 $dtpl->setVariable(
"TYPE", $type);
639 $dtpl->setVariable(
"MOVE", $move);
640 $dtpl->parseCurrentBlock();
647 $ilCtrl->getFormAction($this,
"tableAction")
649 $dtpl->setVariable(
"TXT_ACTION", $this->lng->txt(
"cont_table"));
652 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
656 $main_tpl->addJavascript(
"./libs/bower/bower_components/tinymce/tinymce.min.js");
657 $main_tpl->addJavaScript(
"./Services/COPage/js/ilcopagecallback.js");
658 $main_tpl->addJavascript(
"Services/COPage/js/page_editing.js");
660 $main_tpl->addOnloadCode(
"var preloader = new Image(); 661 preloader.src = './templates/default/images/loader.svg'; 662 ilCOPage.setContentCss('" .
665 ilCOPage.editTD('cell_0_0'); 668 $GLOBALS[
"tpl"]->addOnloadCode(
"ilCOPage.addTextFormat('" . $c .
"');");
676 $this->pg_obj->getParentType(),
677 $cfg->getEnableInternalLinks(),
678 $cfg->getEnableWikiLinks(),
679 $cfg->getEnableKeywords(),
683 $cfg->getEnableAnchors(),
689 if ($cfg->getEnableInternalLinks() || $cfg->getEnableWikiLinks()) {
690 include_once(
"./Services/Link/classes/class.ilInternalLinkGUI.php");
691 $dtpl->setCurrentBlock(
"int_link_prep");
694 array(
"ilpageeditorgui",
"ilinternallinkgui"),
703 $this->tpl->setContent($dtpl->get());
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
__construct(&$a_pg_obj, &$a_content_obj, $a_hier_id, $a_pc_id="")
Constructor public.
tableAction()
Perform operation on table (adding, moving, deleting rows/cols)
getCharacteristicsOfCurrentStyle($a_type)
Get characteristics of current style.
static getInitHTML($a_url)
Get initialisation HTML to use interna link editing.
updateJS()
Update via JavaScript.
executeCommand()
execute command
static xml2outputJS($s_text, $char, $a_pc_id)
Prepare content for js output.
xpath_new_context($dom_document)
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
static handleAjaxContentPost($text)
Post input2xml handling of ajax content.
xpath_eval($xpath_context, $eval_str, $contextnode=null)
update($a_redirect=true)
Update table data in dom and update page in db.
getHierId()
get hierarchical id in dom object
static initConnection(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
static _getTextCharacteristics($a_style_id, $a_include_core=false)
Get text characteristics.
static initPanel($a_resize=false, ilGlobalTemplateInterface $a_main_tpl=null)
Init yui panel.
getPageConfig()
Get Page Config.
static xml2output($a_text, $a_wysiwyg=false, $a_replace_lists=true, $unmask=true)
Converts xml from DB to output in edit textarea.
setCharacteristics($a_chars)
Set Characteristics.
getBBMenu($a_ta_name="par_content")
Get the bb menu incl.
foreach($_POST as $key=> $value) $res
afterCreation()
After creation processing.
static handleAjaxContent($a_content)
Handle ajax content.
static getTinyMenu( $a_par_type, $a_int_links=false, $a_wiki_links=false, $a_keywords=false, $a_style_id=0, $a_paragraph_styles=true, $a_save_return=true, $a_anchors=false, $a_save_new=true, $a_user_links=false)
Get Tiny Menu.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _doJSEditing()
checks if current user has activated js editing and if browser is js capable
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
displayValidationError()
display validation errors
getStyleId()
Get Style Id.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
editData()
Edit data of table.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static initDragDrop(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Drag and Drop.
editDataCl()
Edit data of table.
static _input2xml($a_text, $a_lang, $a_wysiwyg=0, $a_handle_lists=true)
converts user input to xml
getNewTableObject()
Get new table object.
__construct(Container $dic, ilPlugin $plugin)
setHierId($a_hier_id)
get hierarchical id in dom object