1 <?php
2 /* --------------------------------------------------------------
3 AssetCollectionInterface.inc.php 2015-07-22 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12 /**
13 * Interface AssetCollectionInterface
14 *
15 * @category System
16 * @package Http
17 * @subpackage Interfaces
18 */
19 interface AssetCollectionInterface
20 {
21 /**
22 * Adds a new asset to the collection.
23 *
24 * @param AssetInterface $asset
25 */
26 public function add(AssetInterface $asset);
27
28
29 /**
30 * Prints the HTML markup for the assets.
31 *
32 * @return string Returns the HTML markup of the assets.
33 */
34 public function getHtml();
35 }