1<?php
2
3/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once("./Services/COPage/classes/class.ilPageConfig.php");
6
7/**
8 * Page layout page configuration
9 *
10 * @author Alex Killing <alex.killing@gmx.de>
11 * @version $Id$
12 * @ingroup ServicesStyle
13 */
14class ilPageLayoutPageConfig extends ilPageConfig
15{
16    /**
17     * @var ilSetting
18     */
19    protected $settings;
20
21    /**
22     * Init
23     */
24    public function init()
25    {
26        global $DIC;
27
28        $this->settings = $DIC->settings();
29
30        $this->setPreventHTMLUnmasking(false);
31        $this->setEnableInternalLinks(false);
32        $this->setEnablePCType("Question", false);
33        $this->setEnablePCType("Map", false);
34        $this->setEnablePCType("FileList", false);
35        $this->setEnablePCType("PlaceHolder", true);
36    }
37}
38