ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPortfolioTemplatePageConfig.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
11 {
12  public function init()
13  {
14  global $DIC;
15 
16  $this->settings = $DIC->settings();
17  parent::init();
18  $this->setIntLinkHelpDefaultId($_GET["ref_id"]);
19  $this->addIntLinkFilter("PortfolioTemplatePage");
20  $this->removeIntLinkFilter("PortfolioPage");
21  $this->setIntLinkHelpDefaultType("PortfolioTemplatePage");
22 
23  $this->setEnablePCType("Verification", false);
24  $this->setEnablePCType("PlaceHolder", true);
25  }
26 
27  public function getAvailablePlaceholderTypes()
28  {
30 
31  // no questions
32  $all = array(
35  );
36 
37  $validator = new ilCertificateActiveValidator();
38  if (true === $validator->validate()) {
40  }
41 
42  return $all;
43  }
44 }
setEnablePCType($a_pc_type, $a_val)
Set enable pc type.
settings()
Definition: settings.php:2
setIntLinkHelpDefaultType($a_val)
Set internal link default type.
$_GET["client_id"]
removeIntLinkFilter($a_val)
Remove int link filter.
Portfolio template page configuration.
global $DIC
Definition: goto.php:24
Portfolio page configuration.
global $ilSetting
Definition: privfeed.php:17
addIntLinkFilter($a_val)
Add internal links filter.
setIntLinkHelpDefaultId($a_val, $a_is_ref=true)
Set internal link default id.