芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/tepakanyucatan.gob.mx/administrator/components/com_privacy/src/Export/Domain.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Privacy\Administrator\Export; \defined('_JEXEC') or die; /** * Data object representing all data contained in a domain. * * A domain is typically a single database table and the items within the domain are separate rows from the table. * * @since 3.9.0 */ class Domain { /** * The name of this domain * * @var string * @since 3.9.0 */ public $name; /** * A short description of the data in this domain * * @var string * @since 3.9.0 */ public $description; /** * The items belonging to this domain * * @var Item[] * @since 3.9.0 */ protected $items = []; /** * Add an item to the domain * * @param Item $item The item to add * * @return void * * @since 3.9.0 */ public function addItem(Item $item) { $this->items[] = $item; } /** * Get the domain's items * * @return Item[] * * @since 3.9.0 */ public function getItems() { return $this->items; } }