41 int $a_id_type = self::REPOSITORY_NODE_ID,
42 int $a_parent_node_id = 0
47 $this->nav_history = $DIC[
"ilNavigationHistory"];
48 $this->
help = $DIC[
"ilHelp"];
49 $this->
tabs = $DIC->tabs();
50 $this->
toolbar = $DIC->toolbar();
51 $this->
user = $DIC->user();
66 $link = $this->
ctrl->getLinkTarget($this,
"view");
67 $ilNavigationHistory->addItem($this->node_id, $link,
"prtt");
70 $next_class = $this->
ctrl->getNextClass($this);
71 $cmd = $this->
ctrl->getCmd(
"view");
72 switch ($next_class) {
73 case 'ilportfoliotemplatepagegui':
83 case "ilinfoscreengui":
89 case "ilcommonactiondispatchergui":
95 case "ilpermissiongui":
97 $this->tabs_gui->activateTab(
"id_permissions");
99 $this->
ctrl->forwardCommand($perm_gui);
102 case "ilobjectcopygui":
105 $cp->setType(
"prtt");
106 $this->
ctrl->forwardCommand($cp);
111 $this->tabs_gui->activateTab(
"export");
113 $exp_gui->addFormat(
"xml");
114 $this->
ctrl->forwardCommand($exp_gui);
117 case "ilobjectcontentstylesettingsgui":
121 $this->tabs_gui->activateTab(
"settings");
123 $settings_gui = $this->content_style_gui
124 ->objectSettingsGUIForRefId(
128 $this->
ctrl->forwardCommand($settings_gui);
131 case "ilobjectmetadatagui":
135 $this->tabs_gui->activateTab(
"advmd");
137 $this->
ctrl->forwardCommand($md_gui);
140 case strtolower(SettingsGUI::class):
144 $this->tabs_gui->activateTab(
"settings");
146 $gui = $this->gui->settings()->settingsGUI(
167 $this->tabs_gui->addTab(
169 $this->
lng->txt(
"content"),
170 $this->
ctrl->getLinkTarget($this,
"view")
175 $this->tabs_gui->addTab(
177 $this->
lng->txt(
"info_short"),
178 $this->
ctrl->getLinkTargetByClass(array(
"ilobjportfoliotemplategui",
"ilinfoscreengui"),
"showSummary")
183 $this->tabs_gui->addTab(
185 $this->
lng->txt(
"settings"),
186 $this->
ctrl->getLinkTargetByClass(SettingsGUI::class)
190 $mdtab = $mdgui->getTab();
192 $this->tabs_gui->addTab(
194 $this->
lng->txt(
"meta_data"),
199 $this->tabs_gui->addTab(
201 $this->
lng->txt(
"export"),
202 $this->
ctrl->getLinkTargetByClass(
"ilexportgui",
"")
207 $this->tabs_gui->addNonTabbedLink(
209 $this->
lng->txt(
"preview"),
210 $this->
ctrl->getLinkTarget($this,
"preview")
223 $this->
ctrl->redirectByClass(ilInfoScreenGUI::class,
"showSummary");
231 $ilTabs->activateTab(
"id_info");
236 $this->
lng->loadLanguageModule(
"cntr");
239 $this->
lng->txt(
"prtf_create_portfolio_from_template"),
240 $this->
ctrl->getLinkTarget($this,
"createfromtemplate")
241 )->primary()->toToolbar();
246 $info->enablePrivateNotes();
253 $info->enableNewsEditing(
false);
256 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
258 if ($enable_internal_rss) {
259 $info->setBlockProperty(
"news",
"settings",
true);
260 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
265 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
267 $this->
ctrl->forwardCommand($info);
281 $opts = array(
"" => $this->
lng->txt(
"please_select"));
282 foreach ($all as $item) {
283 $opts[$item[
"id"]] = $item[
"title"];
285 $prtf =
new ilSelectInputGUI($this->
lng->txt(
"prtf_create_template_from_portfolio"),
"prtf");
286 $prtf->
setInfo($this->
lng->txt(
"prtf_create_template_from_portfolio_info"));
287 $prtf->setOptions($opts);
296 if ($this->port_request->getPortfolioId() > 0) {
297 $source =
new ilObjPortfolio($this->port_request->getPortfolioId(),
false);
304 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"prtt_portfolio_created"),
true);
305 $this->
ctrl->setParameter($this,
"prt_id", $new_object->
getId());
306 $this->
ctrl->redirect($this,
"view");
311 $this->
ctrl->redirectByClass(SettingsGUI::class);
316 $a_values[
"online"] = $this->
object->isOnline();
317 $a_values[
"access_period"][
"start"] = $this->
object->getActivationStartDate()
320 $a_values[
"access_period"][
"end"] = $this->
object->getActivationEndDate()
323 $a_values[
"access_visiblity"] = $this->
object->getActivationVisibility();
331 parent::getEditFormCustomValues($a_values);
338 $this->
object->setOnline($form->
getInput(
"online"));
342 if ($period->getStart() && $period->getEnd()) {
343 $this->
object->setActivationLimited(
true);
344 $this->
object->setActivationVisibility($form->
getInput(
"access_visiblity"));
345 $this->
object->setActivationStartDate($period->getStart()->get(
IL_CAL_UNIX));
346 $this->
object->setActivationEndDate($period->getEnd()->get(
IL_CAL_UNIX));
348 $this->
object->setActivationLimited(
false);
351 parent::updateCustom($form);
353 $obj_service->commonSettings()->legacyForm($form, $this->
object)->saveTileImage();
373 ?
int $a_page_id =
null,
374 ?
int $a_portfolio_id =
null 376 if (!$a_portfolio_id && $this->
object) {
377 $a_portfolio_id = $this->
object->
getId();
380 $page->setPortfolioId($a_portfolio_id);
394 $this->
object->hasPublicComments()
402 return "ilportfoliotemplatepagegui";
409 $hi->setValue(
"old");
414 foreach ($all as
$id => $title) {
415 $options[
$id] = $title;
419 $prtf->setOptions($options);
429 bool $a_return =
false,
431 bool $a_show_notes =
true 435 $this->
lng->loadLanguageModule(
"cntr");
436 $button = $this->gui->button(
437 $this->
lng->txt(
"prtf_create_portfolio_from_template"),
438 $this->
ctrl->getLinkTarget($this,
"createfromtemplate")
440 $this->tpl->setHeaderActionMenu($button->render());
448 $this->
ctrl->setParameterByClass(
"ilobjportfoliogui",
"prtt_pre", $this->
object->getId());
449 $this->
ctrl->redirectByClass(array(
"ilDashboardGUI",
"ilportfoliorepositorygui",
"ilobjportfoliogui"),
"create");
454 $this->
ctrl->setParameterByClass(
"ilobjportfoliogui",
"prtt_pre", $this->
object->getId());
455 $this->
ctrl->redirectByClass(array(
"ilDashboardGUI",
"ilportfoliorepositorygui",
"ilobjportfoliogui"),
"createFromTemplateDirect");
458 public static function _goto(
string $a_target):
void 464 $ctrl = $DIC->ctrl();
466 $id = explode(
"_", $a_target);
executeCommand()
execute command
ILIAS Portfolio InternalGUIService $gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GUI class for the workflow of copying objects.
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
getEditFormCustomValues(array &$a_values)
setParameterByClass(string $a_class, string $a_parameter, $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareOutput(bool $show_sub_objects=true)
static updateServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
__construct(int $a_id=0, int $a_id_type=self::REPOSITORY_NODE_ID, int $a_parent_node_id=0)
getPageGUIInstance(int $a_page_id)
Get portfolio template page gui instance.
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
handlePageCall(string $a_cmd)
static getAvailablePortfolioTemplates(string $a_permission="read")
preview()
description: > Example for rendering a Preview Glyph.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static clonePagesAndSettings(ilObjPortfolioBase $a_source, ilObjPortfolioBase $a_target, ?array $a_recipe=null, bool $copy_all=false)
Build template from portfolio and vice versa.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
ilNavigationHistory $nav_history
setScreenIdComponent(string $a_comp)
static getPortfoliosOfUser(int $a_user_id)
Get portfolios of user.
ilObjectService $object_service
updateCustom(ilPropertyFormGUI $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
afterSave(ilObject $new_object)
Post (successful) object creation hook.
Portfolio template view gui class.
Last visited history for repository items.
initDidacticTemplate(ilPropertyFormGUI $form)
Portfolio view gui base class.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
setTabs()
create tabs (repository/workspace switch)
preview(bool $a_return=false, $a_content=false, bool $a_show_notes=true)
initCopyPageFormOptions(ilPropertyFormGUI $a_form)
infoScreen()
this one is called from the info button in the repository
setSettingsSubTabs(string $a_active)
__construct(Container $dic, ilPlugin $plugin)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
getPageInstance(?int $a_page_id=null, ?int $a_portfolio_id=null)
Get portfolio template page instance.
addHeaderAction()
Add header action menu.
setAdditional(array $a_additional)
Set Additonal Information.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...