1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("./Services/COPage/classes/class.ilPageObject.php");
5
6/**
7 * Container page object
8 *
9 * @author Alex Killing <alex.killing@gmx.de>
10 * @version $Id$
11 *
12 * @ingroup ServicesContainer
13 */
14class ilContainerPage extends ilPageObject
15{
16    /**
17     * Get parent type
18     *
19     * @return string parent type
20     */
21    public function getParentType()
22    {
23        return "cont";
24    }
25}
26