mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
187 lines
3.9 KiB
PHP
187 lines
3.9 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2022, 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\DataModel;
|
|
|
|
use SP\Domain\Common\Out\DataModelBase;
|
|
use SP\Domain\Common\Out\DataModelInterface;
|
|
|
|
/**
|
|
* Class PublicLinkData
|
|
*
|
|
* @package SP\DataModel
|
|
*/
|
|
class PublicLinkData extends DataModelBase implements DataModelInterface
|
|
{
|
|
protected ?int $id;
|
|
protected ?int $itemId;
|
|
protected ?string $hash;
|
|
protected ?int $userId;
|
|
protected ?int $typeId;
|
|
protected ?bool $notify;
|
|
protected ?int $dateAdd;
|
|
protected ?int $dateUpdate;
|
|
protected ?int $dateExpire;
|
|
protected ?int $countViews;
|
|
protected ?int $totalCountViews;
|
|
protected ?int $maxCountViews;
|
|
protected ?string $useInfo;
|
|
protected ?string $data;
|
|
|
|
public function getData(): ?string
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
public function setData(?string $data): void
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return (int)$this->id;
|
|
}
|
|
|
|
public function getHash(): ?string
|
|
{
|
|
return $this->hash;
|
|
}
|
|
|
|
public function setHash(?string $hash): void
|
|
{
|
|
$this->hash = $hash;
|
|
}
|
|
|
|
public function getItemId(): int
|
|
{
|
|
return (int)$this->itemId;
|
|
}
|
|
|
|
public function setItemId(int $itemId): void
|
|
{
|
|
$this->itemId = $itemId;
|
|
}
|
|
|
|
public function getUserId(): int
|
|
{
|
|
return (int)$this->userId;
|
|
}
|
|
|
|
public function setUserId(int $userId): void
|
|
{
|
|
$this->userId = $userId;
|
|
}
|
|
|
|
public function getTypeId(): ?int
|
|
{
|
|
return $this->typeId;
|
|
}
|
|
|
|
public function setTypeId(int $typeId): void
|
|
{
|
|
$this->typeId = $typeId;
|
|
}
|
|
|
|
public function isNotify(): bool
|
|
{
|
|
return $this->notify;
|
|
}
|
|
|
|
public function setNotify(bool $notify): void
|
|
{
|
|
$this->notify = $notify;
|
|
}
|
|
|
|
public function getDateAdd(): ?int
|
|
{
|
|
return $this->dateAdd;
|
|
}
|
|
|
|
public function setDateAdd(int $dateAdd): void
|
|
{
|
|
$this->dateAdd = $dateAdd;
|
|
}
|
|
|
|
public function getDateExpire(): ?int
|
|
{
|
|
return $this->dateExpire;
|
|
}
|
|
|
|
public function setDateExpire(int $dateExpire): void
|
|
{
|
|
$this->dateExpire = $dateExpire;
|
|
}
|
|
|
|
public function getCountViews(): ?int
|
|
{
|
|
return $this->countViews;
|
|
}
|
|
|
|
public function setCountViews(int $countViews): void
|
|
{
|
|
$this->countViews = $countViews;
|
|
}
|
|
|
|
public function addCountViews(): ?int
|
|
{
|
|
return $this->countViews++;
|
|
}
|
|
|
|
public function getMaxCountViews(): ?int
|
|
{
|
|
return $this->maxCountViews;
|
|
}
|
|
|
|
public function setMaxCountViews(int $maxCountViews): void
|
|
{
|
|
$this->maxCountViews = $maxCountViews;
|
|
}
|
|
|
|
public function getUseInfo(): ?string
|
|
{
|
|
return $this->useInfo;
|
|
}
|
|
|
|
public function setUseInfo(array $useInfo): void
|
|
{
|
|
$this->useInfo = serialize($useInfo);
|
|
}
|
|
|
|
public function getTotalCountViews(): ?int
|
|
{
|
|
return $this->totalCountViews;
|
|
}
|
|
|
|
public function getDateUpdate(): ?int
|
|
{
|
|
return $this->dateUpdate;
|
|
}
|
|
|
|
public function getName(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
}
|