source of /sprout/Helpers/RteLibContainer.php<?php /* * Copyright (C) 2017 Karmabunny Pty Ltd. * * This file is a part of SproutCMS. * * SproutCMS is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Foundation, either * version 2 of the License, or (at your option) any later version. * * For more information, visit <http://getsproutcms.com>. */ namespace Sprout\Helpers; /** * Returned by RteLibrary classes to represent a "container" (e.g. directories) in the browse structure **/ class RteLibContainer { private $name; private $label; public function __construct($name, $label) { $this->name = $name; $this->label = $label; } public function getName() { return $this->name; } public function getLabel() { return $this->label; } }
|