4 require_once(
"./Services/COPage/classes/class.ilPCSection.php");
5 require_once(
"./Services/COPage/classes/class.ilPageContentGUI.php");
26 public function __construct(&$a_pg_obj, &$a_content_obj, $a_hier_id, $a_pc_id =
"")
30 $this->tpl = $DIC[
"tpl"];
31 $this->lng = $DIC->language();
32 $this->ctrl = $DIC->ctrl();
45 $lng = $DIC->language();
47 return array(
"Block" =>
$lng->txt(
"cont_Block"),
48 "Mnemonic" =>
$lng->txt(
"cont_Mnemonic"),
49 "Remark" =>
$lng->txt(
"cont_Remark"),
50 "Example" =>
$lng->txt(
"cont_Example"),
51 "Additional" =>
$lng->txt(
"cont_Additional"),
52 "Special" =>
$lng->txt(
"cont_Special"),
54 "Attention" =>
$lng->txt(
"cont_Attention"),
55 "Background" =>
$lng->txt(
"cont_Background"),
56 "Confirmation" =>
$lng->txt(
"cont_Confirmation"),
57 "Information" =>
$lng->txt(
"cont_Information"),
58 "Interaction" =>
$lng->txt(
"cont_Interaction"),
59 "Link" =>
$lng->txt(
"cont_Link"),
60 "Literature" =>
$lng->txt(
"cont_Literature"),
61 "Separator" =>
$lng->txt(
"cont_Separator"),
62 "StandardCenter" =>
$lng->txt(
"cont_StandardCenter"),
64 "Excursus" =>
$lng->txt(
"cont_Excursus"),
65 "AdvancedKnowledge" =>
$lng->txt(
"cont_AdvancedKnowledge"));
75 if ($a_style_id > 0 &&
77 include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php");
79 $chars = $style->getCharacteristics(
"section");
81 foreach ($chars as $char) {
82 if ($chars[$char] !=
"") {
83 $new_chars[$char] = $chars[$char];
85 $new_chars[$char] = $char;
102 $next_class = $this->ctrl->getNextClass($this);
105 $cmd = $this->ctrl->getCmd();
107 switch ($next_class) {
108 case "ilpropertyformgui":
109 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
111 $this->ctrl->forwardCommand($form);
115 $ret = $this->$cmd();
127 $this->
edit(
true, $a_form);
140 $a_form = $this->
initForm($a_insert);
143 $tpl->setContent($a_form->getHTML());
155 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
157 $form->setFormAction(
$ilCtrl->getFormAction($this));
159 $form->setTitle($this->lng->txt(
"cont_insert_section"));
161 $form->setTitle($this->lng->txt(
"cont_update_section"));
165 require_once(
"./Services/Form/classes/class.ilAdvSelectInputGUI.php");
167 $this->lng->txt(
"cont_characteristic"),
172 if (is_object($this->content_obj)) {
173 if ($chars[$a_seleted_value] ==
"" && ($this->content_obj->getCharacteristic() !=
"")) {
174 $chars = array_merge(
175 array($this->content_obj->getCharacteristic() => $this->content_obj->getCharacteristic()),
181 $selected = ($a_insert)
183 : $this->content_obj->getCharacteristic();
185 foreach ($chars as $k => $char) {
186 $html =
'<div class="ilCOPgEditStyleSelectionItem"><div class="ilc_section_' . $k .
'" style="' . self::$style_selector_reset .
'">' .
187 $char .
'</div></div>';
188 $char_prop->addOption($k, $char, $html);
191 $char_prop->setValue($selected);
192 $form->addItem($char_prop);
195 include_once
'Services/Form/classes/class.ilLinkInputGUI.php';
202 $ac->setRequired(
false);
203 $ac->setInfo($this->lng->txt(
"copg_sec_link_info"));
204 $ac->setInternalLinkDefault(
208 $link_types = array();
212 $ac->setInternalLinkFilterTypes($link_types);
213 $ac->setFilterWhiteList(
218 $l = $this->content_obj->getLink();
219 if ($l[
"LinkType"] ==
"IntLink") {
220 $ac->setValueByIntLinkAttributes($l[
"Type"], $l[
"Target"], $l[
"TargetFrame"]);
222 if ($l[
"LinkType"] ==
"ExtLink") {
223 $ac->setValue($l[
"Href"]);
232 if (!$a_insert && ($from = $this->content_obj->getActiveFrom()) !=
"") {
235 $dt_prop->setShowTime(
true);
236 $form->addItem($dt_prop);
240 if (!$a_insert && ($to = $this->content_obj->getActiveTo()) !=
"") {
243 $dt_prop->setShowTime(
true);
244 $form->addItem($dt_prop);
248 include_once(
"./Services/Form/classes/class.ilRepositorySelector2InputGUI.php");
255 "read" =>
$lng->txt(
"read"),
256 "write" =>
$lng->txt(
"write"),
257 "visible" =>
$lng->txt(
"visible"),
258 "no_read" =>
$lng->txt(
"cont_no_read")
261 $si->setInfo(
$lng->txt(
"cont_permission_object_desc"));
262 $si->setOptions($options);
266 $si->setValue($this->content_obj->getPermission());
267 $rs->setValue($this->content_obj->getPermissionRefId());
273 $form->addCommandButton(
"create_section",
$lng->txt(
"save"));
274 $form->addCommandButton(
"cancelCreate",
$lng->txt(
"cancel"));
276 $form->addCommandButton(
"update",
$lng->txt(
"save"));
277 $form->addCommandButton(
"cancelUpdate",
$lng->txt(
"cancel"));
289 if ($form->checkInput()) {
291 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
295 $this->updated = $this->pg_obj->update();
296 if ($this->updated ===
true) {
297 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
310 if ($form->checkInput()) {
313 $this->updated = $this->pg_obj->update();
314 if ($this->updated ===
true) {
315 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
319 $this->pg_obj->addHierIDs();
320 $this->
edit(
false, $form);
330 $this->content_obj->setCharacteristic(
$_POST[
"characteristic"]);
332 $from = $form->getItemByPostVar(
"active_from")->getDate();
334 $this->content_obj->setActiveFrom($from->get(
IL_CAL_UNIX));
336 $this->content_obj->setActiveFrom(0);
339 $to = $form->getItemByPostVar(
"active_to")->getDate();
341 $this->content_obj->setActiveTo($to->get(
IL_CAL_UNIX));
343 $this->content_obj->setActiveTo(0);
347 $this->content_obj->setPermissionRefId(
$_POST[
"permission_ref_id"]);
348 $this->content_obj->setPermission(
$_POST[
"permission"]);
351 if (
$_POST[
"link_mode"] ==
"ext" &&
$_POST[
"link"] !=
"") {
352 $this->content_obj->setExtLink(
$_POST[
"link"]);
353 } elseif (
$_POST[
"link_mode"] ==
"int" &&
$_POST[
"link"] !=
"") {
356 $la = $form->getItemByPostVar(
"link")->getIntLinkAttributes();
359 if ($la[
"Type"] !=
"") {
360 $this->content_obj->setIntLink($la[
"Type"], $la[
"Target"], $la[
"TargetFrame"]);
363 $this->content_obj->setNoLink();
executeCommand()
execute command
getCharacteristicsOfCurrentStyle($a_type)
Get characteristics of current style.
edit($a_insert=false, ilPropertyFormGUI $a_form=null)
Edit section form.
setValuesFromForm($form)
Set values from form.
create()
Create new Section.
initForm($a_insert=false)
Init editing form.
static _getStandardCharacteristics()
Get standard characteristics.
getPageConfig()
Get Page Config.
setCharacteristics($a_chars)
Set Characteristics.
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
static _getCharacteristics($a_style_id)
Get characteristics.
displayValidationError()
display validation errors
insert(ilPropertyFormGUI $a_form=null)
Insert new section form.
getCharacteristics()
Get characteristics.
static _lookupType($a_id, $a_reference=false)
lookup object type
__construct(Container $dic, ilPlugin $plugin)
__construct(&$a_pg_obj, &$a_content_obj, $a_hier_id, $a_pc_id="")
Constructor public.