ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjPortfolioTemplateGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once('./Modules/Portfolio/classes/class.ilObjPortfolioBaseGUI.php');
5 
19 {
20  public function getType()
21  {
22  return "prtt";
23  }
24 
25  public function executeCommand()
26  {
27  global $ilNavigationHistory;
28 
29  $this->tpl->getStandardTemplate();
30 
31  // add entry to navigation history
32  if(!$this->getCreationMode() &&
33  $this->getAccessHandler()->checkAccess("read", "", $this->node_id))
34  {
35  $link = $this->ctrl->getLinkTarget($this, "view");
36  $ilNavigationHistory->addItem($this->node_id, $link, "prtt");
37  }
38 
39  $next_class = $this->ctrl->getNextClass($this);
40  $cmd = $this->ctrl->getCmd("view");
41 
42  switch($next_class)
43  {
44  case 'ilportfoliotemplatepagegui':
45  $this->determinePageCall(); // has to be done before locator!
46  $this->prepareOutput();
47  $this->handlePageCall($cmd);
48  break;
49 
50  case "ilnotegui";
51  $this->preview();
52  break;
53 
54  case "ilinfoscreengui":
55  $this->prepareOutput();
56  $this->infoScreenForward();
57  break;
58 
59  case "ilcommonactiondispatchergui":
60  include_once("Services/Object/classes/class.ilCommonActionDispatcherGUI.php");
62  $this->ctrl->forwardCommand($gui);
63  break;
64 
65  case "ilpermissiongui":
66  $this->prepareOutput();
67  $this->tabs_gui->activateTab("id_permissions");
68  include_once("Services/AccessControl/classes/class.ilPermissionGUI.php");
69  $perm_gui = new ilPermissionGUI($this);
70  $this->ctrl->forwardCommand($perm_gui);
71  break;
72 
73  case "ilobjectcopygui":
74  include_once "./Services/Object/classes/class.ilObjectCopyGUI.php";
75  $cp = new ilObjectCopyGUI($this);
76  $cp->setType("prtt");
77  $this->ctrl->forwardCommand($cp);
78  break;
79 
80  case 'ilexportgui':
81  $this->prepareOutput();
82  $this->tabs_gui->activateTab("export");
83  include_once("./Services/Export/classes/class.ilExportGUI.php");
84  $exp_gui = new ilExportGUI($this);
85  $exp_gui->addFormat("xml");
86  $this->ctrl->forwardCommand($exp_gui);
87  break;
88 
89  case "ilobjstylesheetgui":
90  include_once ("./Services/Style/classes/class.ilObjStyleSheetGUI.php");
91  $this->ctrl->setReturn($this, "editStyleProperties");
92  $style_gui = new ilObjStyleSheetGUI("", $this->object->getStyleSheetId(), false, false);
93  $style_gui->omitLocator();
94  if ($cmd == "create" || $_GET["new_type"]=="sty")
95  {
96  $style_gui->setCreationMode(true);
97  }
98 
99  if ($cmd == "confirmedDelete")
100  {
101  $this->object->setStyleSheetId(0);
102  $this->object->update();
103  }
104 
105  $ret = $this->ctrl->forwardCommand($style_gui);
106 
107  if ($cmd == "save" || $cmd == "copyStyle" || $cmd == "importStyle")
108  {
109  $style_id = $ret;
110  $this->object->setStyleSheetId($style_id);
111  $this->object->update();
112  $this->ctrl->redirectByClass("ilobjstylesheetgui", "edit");
113  }
114  break;
115 
116  default:
117  $this->addHeaderAction($cmd);
119  }
120  }
121 
122  protected function setTabs()
123  {
124  global $ilHelp;
125 
126  $ilHelp->setScreenIdComponent("prtt");
127 
128  if($this->checkPermissionBool("write"))
129  {
130  $this->tabs_gui->addTab("pages",
131  $this->lng->txt("content"),
132  $this->ctrl->getLinkTarget($this, "view"));
133  }
134 
135  if ($this->checkPermissionBool("read"))
136  {
137  $this->tabs_gui->addTab("id_info",
138  $this->lng->txt("info_short"),
139  $this->ctrl->getLinkTargetByClass(array("ilobjportfoliotemplategui", "ilinfoscreengui"), "showSummary"));
140  }
141 
142  if($this->checkPermissionBool("write"))
143  {
144  $this->tabs_gui->addTab("settings",
145  $this->lng->txt("settings"),
146  $this->ctrl->getLinkTarget($this, "edit"));
147 
148  $this->tabs_gui->addTab("export",
149  $this->lng->txt("export"),
150  $this->ctrl->getLinkTargetByClass("ilexportgui", ""));
151  }
152 
153  if ($this->checkPermissionBool("read"))
154  {
155  $this->tabs_gui->addNonTabbedLink("preview",
156  $this->lng->txt("user_profile_preview"),
157  $this->ctrl->getLinkTarget($this, "preview"));
158  }
159 
160  // will add permissions if needed
162  }
163 
169  function infoScreen()
170  {
171  $this->ctrl->setCmd("showSummary");
172  $this->ctrl->setCmdClass("ilinfoscreengui");
173  $this->infoScreenForward();
174  }
175 
179  function infoScreenForward()
180  {
181  global $ilTabs, $ilErr, $ilToolbar;
182 
183  $ilTabs->activateTab("id_info");
184 
185  if (!$this->checkPermissionBool("visible"))
186  {
187  $ilErr->raiseError($this->lng->txt("msg_no_perm_read"));
188  }
189 
190  if ($this->checkPermissionBool("read"))
191  {
192  $this->lng->loadLanguageModule("cntr");
193  $ilToolbar->addButton($this->lng->txt("prtf_create_portfolio_from_template"),
194  $this->ctrl->getLinkTarget($this, "createfromtemplate"),
195  "", "", "", "", "submit emphsubmit");
196  }
197 
198  include_once("./Services/InfoScreen/classes/class.ilInfoScreenGUI.php");
199  $info = new ilInfoScreenGUI($this);
200 
201  $info->enablePrivateNotes();
202 
203  if ($this->checkPermissionBool("read"))
204  {
205  $info->enableNews();
206  }
207 
208  // no news editing for files, just notifications
209  $info->enableNewsEditing(false);
210  if ($this->checkPermissionBool("write"))
211  {
212  $news_set = new ilSetting("news");
213  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
214 
215  if ($enable_internal_rss)
216  {
217  $info->setBlockProperty("news", "settings", true);
218  $info->setBlockProperty("news", "public_notifications_option", true);
219  }
220  }
221 
222  // standard meta data
223  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
224 
225  $this->ctrl->forwardCommand($info);
226  }
227 
228 
229  //
230  // CREATE/EDIT
231  //
232 
233  protected function initDidacticTemplate(ilPropertyFormGUI $a_form)
234  {
235  global $ilUser;
236 
237  include_once "Modules/Portfolio/classes/class.ilObjPortfolio.php";
238  $all = ilObjPortfolio::getPortfoliosOfUser($ilUser->getId());
239  if(sizeof($all))
240  {
241  $opts = array(""=>$this->lng->txt("please_select"));
242  foreach($all as $item)
243  {
244  $opts[$item["id"]] = $item["title"];
245  }
246  $prtf = new ilSelectInputGUI($this->lng->txt("prtf_create_template_from_portfolio"), "prtf");
247  $prtf->setInfo($this->lng->txt("prtf_create_template_from_portfolio_info"));
248  $prtf->setOptions($opts);
249  $a_form->addItem($prtf);
250  }
251 
252  // yeah, I know.
253  return $a_form;
254  }
255 
256  protected function afterSave(ilObject $a_new_object)
257  {
258  if($_POST["prtf"])
259  {
260  include_once "Modules/Portfolio/classes/class.ilObjPortfolio.php";
261  $source = new ilObjPortfolio($_POST["prtf"], false);
262 
263  ilObjPortfolio::clonePagesAndSettings($source, $a_new_object);
264  }
265 
266  ilUtil::sendSuccess($this->lng->txt("prtf_portfolio_created"), true);
267  $this->ctrl->setParameter($this, "prt_id", $a_new_object->getId());
268  $this->ctrl->redirect($this, "view");
269  }
270 
271  protected function initEditCustomForm(ilPropertyFormGUI $a_form)
272  {
273  // activation/availability
274 
275  include_once "Services/Object/classes/class.ilObjectActivation.php";
276  $this->lng->loadLanguageModule('rep');
277 
279  $section->setTitle($this->lng->txt('rep_activation_availability'));
280  $a_form->addItem($section);
281 
282  // additional info only with multiple references
283  $act_obj_info = $act_ref_info = "";
284  if(sizeof(ilObject::_getAllReferences($this->object->getId())) > 1)
285  {
286  $act_obj_info = ' '.$this->lng->txt('rep_activation_online_object_info');
287  $act_ref_info = $this->lng->txt('rep_activation_access_ref_info');
288  }
289 
290  $online = new ilCheckboxInputGUI($this->lng->txt('rep_activation_online'),'online');
291  $online->setInfo($this->lng->txt('prtt_activation_online_info').$act_obj_info);
292  $a_form->addItem($online);
293 
294  $act_type = new ilCheckboxInputGUI($this->lng->txt('rep_visibility_until'),'access_type');
295  // $act_type->setInfo($this->lng->txt('prtt_availability_until_info'));
296 
297  $this->tpl->addJavaScript('./Services/Form/js/date_duration.js');
298  include_once "Services/Form/classes/class.ilDateDurationInputGUI.php";
299  $dur = new ilDateDurationInputGUI($this->lng->txt("rep_time_period"), "access_period");
300  $dur->setShowTime(true);
301  $date = $this->object->getActivationStartDate();
302  $dur->setStart(new ilDateTime($date ? $date : time(), IL_CAL_UNIX));
303  $dur->setStartText($this->lng->txt('rep_activation_limited_start'));
304  $date = $this->object->getActivationEndDate();
305  $dur->setEnd(new ilDateTime($date ? $date : time(), IL_CAL_UNIX));
306  $dur->setEndText($this->lng->txt('rep_activation_limited_end'));
307  $act_type->addSubItem($dur);
308 
309  $visible = new ilCheckboxInputGUI($this->lng->txt('rep_activation_limited_visibility'), 'access_visiblity');
310  $visible->setInfo($this->lng->txt('prtt_activation_limited_visibility_info'));
311  $act_type->addSubItem($visible);
312 
313  $a_form->addItem($act_type);
314 
316  $section->setTitle($this->lng->txt('properties'));
317  $a_form->addItem($section);
318 
319  parent::initEditCustomForm($a_form);
320  }
321 
322  protected function getEditFormCustomValues(array &$a_values)
323  {
324  $a_values["online"] = $this->object->isOnline();
325  $a_values["access_type"] = $this->object->isActivationLimited();
326  $a_values["access_visiblity"] = $this->object->getActivationVisibility();
327 
328  parent::getEditFormCustomValues($a_values);
329  }
330 
331  public function updateCustom(ilPropertyFormGUI $a_form)
332  {
333  $this->object->setOnline($a_form->getInput("online"));
334 
335  // activation
336  if($a_form->getInput("access_type"))
337  {
338  $this->object->setActivationLimited(true);
339  $this->object->setActivationVisibility($a_form->getInput("access_visiblity"));
340 
341  $period = $a_form->getItemByPostVar("access_period");
342  $this->object->setActivationStartDate($period->getStart()->get(IL_CAL_UNIX));
343  $this->object->setActivationEndDate($period->getEnd()->get(IL_CAL_UNIX));
344  }
345  else
346  {
347  $this->object->setActivationLimited(false);
348  }
349 
350  parent::updateCustom($a_form);
351  }
352 
353 
354  //
355  // PAGES
356  //
357 
365  protected function getPageInstance($a_page_id = null, $a_portfolio_id = null)
366  {
367  if(!$a_portfolio_id && $this->object)
368  {
369  $a_portfolio_id = $this->object->getId();
370  }
371  include_once "Modules/Portfolio/classes/class.ilPortfolioTemplatePage.php";
372  $page = new ilPortfolioTemplatePage($a_page_id);
373  $page->setPortfolioId($a_portfolio_id);
374  return $page;
375  }
376 
383  protected function getPageGUIInstance($a_page_id)
384  {
385  include_once("Modules/Portfolio/classes/class.ilPortfolioTemplatePageGUI.php");
386  $page_gui = new ilPortfolioTemplatePageGUI(
387  $this->object->getId(),
388  $a_page_id,
389  0,
390  $this->object->hasPublicComments()
391  );
392  $page_gui->setAdditional($this->getAdditional());
393  return $page_gui;
394  }
395 
396  public function getPageGUIClassName()
397  {
398  return "ilportfoliotemplatepagegui";
399  }
400 
401  protected function initCopyPageFormOptions(ilFormPropertyGUI $a_tgt)
402  {
403  $old = new ilRadioOption($this->lng->txt("prtf_existing_portfolio"), "old");
404  $a_tgt->addOption($old);
405 
406  $options = array();
408  foreach($all as $id => $title)
409  {
410  if(true /* $id != $this->object->getId() */)
411  {
412  $options[$id] = $title;
413  }
414  }
415  $prtf = new ilSelectInputGUI($this->lng->txt("obj_prtt"), "prtf");
416  $prtf->setRequired(true);
417  $prtf->setOptions($options);
418  $old->addSubItem($prtf);
419 
420  // no option to create new template here
421  $a_tgt->setValue("old");
422  }
423 
424 
425  //
426  // BLOG
427  //
428 
435  public function initBlogForm()
436  {
437  include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
438  $form = new ilPropertyFormGUI();
439  $form->setFormAction($this->ctrl->getFormAction($this));
440 
441  $obj = new ilTextInputGUI($this->lng->txt("title"), "blog");
442  $obj->setRequired(true);
443  $form->addItem($obj);
444 
445  // save and cancel commands
446  $form->setTitle($this->lng->txt("prtf_add_blog").": ".
447  $this->object->getTitle());
448  $form->addCommandButton("saveBlog", $this->lng->txt("save"));
449  $form->addCommandButton("view", $this->lng->txt("cancel"));
450 
451  return $form;
452  }
453 
457  public function saveBlog()
458  {
459  $form = $this->initBlogForm();
460  if ($form->checkInput() && $this->checkPermissionBool("write"))
461  {
462  $page = $this->getPageInstance();
464  $page->setTitle($form->getInput("blog"));
465  $page->create();
466 
467  ilUtil::sendSuccess($this->lng->txt("prtf_page_created"), true);
468  $this->ctrl->redirect($this, "view");
469  }
470 
471  $this->tabs_gui->clearTargets();
472  $this->tabs_gui->setBackTarget($this->lng->txt("back"),
473  $this->ctrl->getLinkTarget($this, "view"));
474 
475  $form->setValuesByPost();
476  $this->tpl->setContent($form->getHtml());
477  }
478 
479 
480  //
481  // TRANSMOGRIFIER
482  //
483 
484  function preview($a_return = false, $a_content = false, $a_show_notes = true)
485  {
486  if(!$this->checkPermissionBool("write") &&
487  $this->checkPermissionBool("read"))
488  {
489  $this->lng->loadLanguageModule("cntr");
490  $url = $this->ctrl->getLinkTarget($this, "createfromtemplate");
491  $button = '<a href="'.$url.'" class="submit emphsubmit">'.
492  $this->lng->txt("prtf_create_portfolio_from_template").'</a>';
493  $this->tpl->setHeaderActionMenu($button);
494  }
495 
496  return parent::preview($a_return , $a_content, $a_show_notes);
497  }
498 
499  public function createFromTemplate()
500  {
501  $this->ctrl->setParameterByClass("ilobjportfoliogui", "prtt_pre", $this->object->getId());
502  $this->ctrl->redirectByClass(array("ilpersonaldesktopgui", "ilportfoliorepositorygui", "ilobjportfoliogui"), "create");
503  }
504 
505  public function _goto($a_target)
506  {
507  $id = explode("_", $a_target);
508 
509  $_GET["baseClass"] = "ilRepositoryGUI";
510  $_GET["ref_id"] = $id[0];
511  $_GET["cmd"] = "preview";
512 
513  include("ilias.php");
514  exit;
515  }
516 }
517 
518 ?>
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
getPageInstance($a_page_id=null, $a_portfolio_id=null)
Get portfolio template page instance.
initDidacticTemplate(ilPropertyFormGUI $a_form)
This class represents an option in a radio group.
ILIAS Setting Class.
exit
Definition: login.php:54
Class ilInfoScreenGUI.
$_POST['username']
Definition: cron.php:12
getItemByPostVar($a_post_var)
Get Item by POST variable.
This class represents a selection list property in a property form.
This class represents a property form user interface.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_node_id=null)
Check permission.
GUI class for the workflow of copying objects.
$_GET["client_id"]
This class represents a section header in a property form.
static getPortfoliosOfUser($a_user_id)
Get views of user.
getAccessHandler()
Get access handler.
Class ilObject Basic functions for all objects.
initBlogForm()
Init blog template page form.
$cmd
Definition: sahs_server.php:35
static clonePagesAndSettings(ilObjPortfolioBase $a_source, ilObjPortfolioBase $a_target, array $a_recipe=null)
Build template from portfolio and vice versa.
This class represents a checkbox property in a property form.
addItem($a_item)
Add Item (Property, SectionHeader).
const IL_CAL_UNIX
infoScreenForward()
show information screen
getPageGUIInstance($a_page_id)
Get portfolio template page gui instance.
static _getAllReferences($a_id)
get all reference ids of object
setInfo($a_info)
Set Information Text.
$section
Definition: Utf8Test.php:84
Export User Interface Class.
input GUI for a time span (start and end date)
initCopyPageFormOptions(ilFormPropertyGUI $a_tgt)
if(!is_array($argv)) $options
getId()
get object id public
initEditCustomForm(ilPropertyFormGUI $a_form)
omitLocator($a_omit=true)
getAdditional()
Get Additonal Information.
This class represents a text property in a property form.
Date and time handling
Page for portfolio template.
static getAvailablePortfolioTemplates($a_permission="read")
setShowTime($a_showtime)
Set Show Time Information.
getInput($a_post_var, $ensureValidation=true)
Returns the value of a HTTP-POST variable, identified by the passed id.
Portfolio template view gui class.
Portfolio view gui base class.
setTabs()
create tabs (repository/workspace switch)
saveBlog()
Create new portfolio blog template page.
infoScreen()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
global $ilUser
Definition: imgupload.php:15
preview($a_return=false, $a_content=false, $a_show_notes=true)
setAdditional($a_additional)
Set Additonal Information.
Class ilObjStyleSheetGUI.
This class represents a property in a property form.
& executeCommand()
execute command
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
addHeaderAction()
Add header action menu.
setRequired($a_required)
Set Required.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
Portfolio template page gui class.