1<?php
2/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4/**
5 * Class ilCloudPluginListGUI
6 *
7 * Abstract class working as base for ilCloudPluginItemCreationListGUI and ilCloudPluginActionListGUI
8 *
9 * @author  Timon Amstutz timon.amstutz@ilub.unibe.ch
10 * @version $Id$
11 * @ingroup ModulesCloud
12 */
13abstract class ilCloudPluginListGUI extends ilCloudPluginGUI
14{
15
16    /**
17     * @var ilcloudFileNode
18     */
19    protected $node = null;
20
21
22    abstract protected function addItemsBefore();
23
24
25    abstract protected function addItemsAfter();
26}
27