150 lines
3.0 KiB
PHP
150 lines
3.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* Nextcloud - Related Resources
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
* @copyright 2022
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
namespace OCA\RelatedResources\Model;
|
|
|
|
use JsonSerializable;
|
|
use OCA\RelatedResources\Tools\Db\IQueryRow;
|
|
use OCA\RelatedResources\Tools\Traits\TArrayTools;
|
|
|
|
class DeckBoard implements IQueryRow, JsonSerializable {
|
|
use TArrayTools;
|
|
|
|
private int $boardId = 0;
|
|
private string $boardName = '';
|
|
private string $owner = '';
|
|
private int $lastModified = 0;
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
|
|
/**
|
|
* @param int $boardId
|
|
*
|
|
* @return DeckBoard
|
|
*/
|
|
public function setBoardId(int $boardId): self {
|
|
$this->boardId = $boardId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getBoardId(): int {
|
|
return $this->boardId;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $boardName
|
|
*
|
|
* @return DeckBoard
|
|
*/
|
|
public function setBoardName(string $boardName): self {
|
|
$this->boardName = $boardName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBoardName(): string {
|
|
return $this->boardName;
|
|
}
|
|
|
|
/**
|
|
* @param string $owner
|
|
*
|
|
* @return DeckBoard
|
|
*/
|
|
public function setOwner(string $owner): self {
|
|
$this->owner = $owner;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getOwner(): string {
|
|
return $this->owner;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param int $lastModified
|
|
*
|
|
* @return DeckBoard
|
|
*/
|
|
public function setLastModified(int $lastModified): self {
|
|
$this->lastModified = $lastModified;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getLastModified(): int {
|
|
return $this->lastModified;
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return IQueryRow
|
|
*/
|
|
public function importFromDatabase(array $data): IQueryRow {
|
|
$this->setBoardId($this->getInt('id', $data))
|
|
->setBoardName($this->get('title', $data))
|
|
->setOwner($this->get('owner', $data))
|
|
->setLastModified($this->getInt('last_modified', $data));
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'boardId' => $this->getBoardId(),
|
|
'boardName' => $this->getBoardName(),
|
|
'owner' => $this->getOwner(),
|
|
'last_modified' => $this->getLastModified()
|
|
];
|
|
}
|
|
}
|