mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
127 lines
2.9 KiB
PHP
127 lines
2.9 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace SP\Domain\Account\Models;
|
|
|
|
use SP\Domain\Common\Models\ItemWithIdAndNameModel;
|
|
use SP\Domain\Common\Models\Model;
|
|
|
|
/**
|
|
* Class PublicLink
|
|
*/
|
|
class PublicLink extends Model implements ItemWithIdAndNameModel
|
|
{
|
|
public const TABLE = 'PublicLink';
|
|
|
|
protected ?int $id = null;
|
|
protected ?int $itemId = null;
|
|
protected ?string $hash = null;
|
|
protected ?int $userId = null;
|
|
protected ?int $typeId = null;
|
|
protected ?bool $notify = null;
|
|
protected ?int $dateAdd = null;
|
|
protected ?int $dateUpdate = null;
|
|
protected ?int $dateExpire = null;
|
|
protected ?int $countViews = null;
|
|
protected ?int $totalCountViews = null;
|
|
protected ?int $maxCountViews = null;
|
|
protected ?string $useInfo = null;
|
|
protected ?string $data = null;
|
|
|
|
public function getData(): ?string
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return (int)$this->id;
|
|
}
|
|
|
|
public function getHash(): ?string
|
|
{
|
|
return $this->hash;
|
|
}
|
|
|
|
public function getItemId(): int
|
|
{
|
|
return (int)$this->itemId;
|
|
}
|
|
|
|
public function getUserId(): int
|
|
{
|
|
return (int)$this->userId;
|
|
}
|
|
|
|
public function getTypeId(): ?int
|
|
{
|
|
return $this->typeId;
|
|
}
|
|
|
|
public function isNotify(): bool
|
|
{
|
|
return $this->notify;
|
|
}
|
|
|
|
public function getDateAdd(): ?int
|
|
{
|
|
return $this->dateAdd;
|
|
}
|
|
|
|
public function getDateExpire(): ?int
|
|
{
|
|
return $this->dateExpire;
|
|
}
|
|
|
|
public function getCountViews(): ?int
|
|
{
|
|
return $this->countViews;
|
|
}
|
|
|
|
public function getMaxCountViews(): ?int
|
|
{
|
|
return $this->maxCountViews;
|
|
}
|
|
|
|
public function getUseInfo(): ?string
|
|
{
|
|
return $this->useInfo;
|
|
}
|
|
|
|
public function getTotalCountViews(): ?int
|
|
{
|
|
return $this->totalCountViews;
|
|
}
|
|
|
|
public function getDateUpdate(): ?int
|
|
{
|
|
return $this->dateUpdate;
|
|
}
|
|
|
|
public function getName(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
}
|