mirror of
https://github.com/nextcloud/app_api.git
synced 2025-07-22 01:13:11 +00:00
79 lines
1.9 KiB
PHP
79 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\AppAPI\Db\UI;
|
|
|
|
use JsonSerializable;
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
/**
|
|
* Class TopMenu
|
|
*
|
|
* @package OCA\AppAPI\Db\UI
|
|
*
|
|
* @method string getAppid()
|
|
* @method string getName()
|
|
* @method string getDisplayName()
|
|
* @method string getIcon()
|
|
* @method int getAdminRequired()
|
|
* @method void setAppid(string $appid)
|
|
* @method void setName(string $name)
|
|
* @method void setDisplayName(string $displayName)
|
|
* @method void setIcon(string $icon)
|
|
* @method void setAdminRequired(int $adminRequired)
|
|
*/
|
|
class TopMenu extends Entity implements JsonSerializable {
|
|
protected $appid;
|
|
protected $name;
|
|
protected $displayName;
|
|
protected $icon;
|
|
protected $adminRequired;
|
|
|
|
/**
|
|
* @param array $params
|
|
*/
|
|
public function __construct(array $params = []) {
|
|
$this->addType('appid', 'string');
|
|
$this->addType('name', 'string');
|
|
$this->addType('display_name', 'string');
|
|
$this->addType('icon', 'string');
|
|
$this->addType('admin_required', 'integer');
|
|
|
|
if (isset($params['id'])) {
|
|
$this->setId($params['id']);
|
|
}
|
|
if (isset($params['appid'])) {
|
|
$this->setAppid($params['appid']);
|
|
}
|
|
if (isset($params['name'])) {
|
|
$this->setName($params['name']);
|
|
}
|
|
if (isset($params['display_name'])) {
|
|
$this->setDisplayName($params['display_name']);
|
|
}
|
|
if (isset($params['icon'])) {
|
|
$this->setIcon($params['icon']);
|
|
}
|
|
if (isset($params['admin_required'])) {
|
|
$this->setAdminRequired($params['admin_required']);
|
|
}
|
|
}
|
|
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'id' => $this->getId(),
|
|
'appid' => $this->getAppid(),
|
|
'name' => $this->getName(),
|
|
'display_name' => $this->getDisplayName(),
|
|
'icon' => $this->getIcon(),
|
|
'admin_required' => $this->getAdminRequired(),
|
|
];
|
|
}
|
|
}
|