mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
220 lines
4.4 KiB
PHP
220 lines
4.4 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024 Combodo SAS
|
|
//
|
|
// This file is part of iTop.
|
|
//
|
|
// iTop 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.
|
|
//
|
|
// iTop 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 iTop. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
namespace Combodo\iTop\Form\Field;
|
|
|
|
use Closure;
|
|
|
|
/**
|
|
* Description of FileUploadField
|
|
*
|
|
* @author Guillaume Lajarige <guillaume.lajarige@combodo.com>
|
|
*/
|
|
class FileUploadField extends AbstractSimpleField
|
|
{
|
|
/** @var bool DEFAULT_ALLOW_DELETE */
|
|
public const DEFAULT_ALLOW_DELETE = true;
|
|
/**
|
|
* @var bool DEFAULT_DISPLAY_OPENED
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
public const DEFAULT_DISPLAY_OPENED = false;
|
|
|
|
/** @var string|null $sTransactionId */
|
|
protected $sTransactionId;
|
|
/** @var \DBObject|null $oObject */
|
|
protected $oObject;
|
|
/** @var string|null $sUploadEndpoint */
|
|
protected $sUploadEndpoint;
|
|
/** @var string|null $sDownloadEndpoint */
|
|
protected $sDownloadEndpoint;
|
|
/**
|
|
* @var string|null $sViewEndpoint
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
protected ?string $sDisplayEndpoint;
|
|
/** @var bool $bAllowDelete */
|
|
protected $bAllowDelete;
|
|
/**
|
|
* @var bool $bDisplayOpened
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
protected bool $bDisplayOpened;
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function __construct(string $sId, Closure $onFinalizeCallback = null)
|
|
{
|
|
$this->sTransactionId = null;
|
|
$this->oObject = null;
|
|
$this->sUploadEndpoint = null;
|
|
$this->sDownloadEndpoint = null;
|
|
$this->sDisplayEndpoint = null;
|
|
$this->bAllowDelete = static::DEFAULT_ALLOW_DELETE;
|
|
$this->bDisplayOpened = static::DEFAULT_DISPLAY_OPENED;
|
|
|
|
parent::__construct($sId, $onFinalizeCallback);
|
|
}
|
|
|
|
/**
|
|
* Returns the transaction id for the field.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function GetTransactionId()
|
|
{
|
|
return $this->sTransactionId;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param string $sTransactionId
|
|
* @return $this
|
|
*/
|
|
public function SetTransactionId(string $sTransactionId)
|
|
{
|
|
$this->sTransactionId = $sTransactionId;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return \DBObject|null
|
|
*/
|
|
public function GetObject()
|
|
{
|
|
return $this->oObject;
|
|
}
|
|
|
|
/**
|
|
* @param $oObject
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function SetObject($oObject)
|
|
{
|
|
$this->oObject = $oObject;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function GetUploadEndpoint()
|
|
{
|
|
return $this->sUploadEndpoint;
|
|
}
|
|
|
|
/**
|
|
* @param $sUploadEndpoint
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function SetUploadEndpoint(string $sUploadEndpoint)
|
|
{
|
|
$this->sUploadEndpoint = $sUploadEndpoint;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function GetDownloadEndpoint()
|
|
{
|
|
return $this->sDownloadEndpoint;
|
|
}
|
|
|
|
/**
|
|
* @param $sDownloadEndpoint
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function SetDownloadEndpoint(string $sDownloadEndpoint)
|
|
{
|
|
$this->sDownloadEndpoint = $sDownloadEndpoint;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string|null
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
public function GetDisplayEndpoint(): ?string
|
|
{
|
|
return $this->sDisplayEndpoint;
|
|
}
|
|
|
|
/**
|
|
* @param string $sDisplayEndpoint
|
|
*
|
|
* @return FileUploadField
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
public function SetDisplayEndpoint(string $sDisplayEndpoint): FileUploadField
|
|
{
|
|
$this->sDisplayEndpoint = $sDisplayEndpoint;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function GetAllowDelete()
|
|
{
|
|
return $this->bAllowDelete;
|
|
}
|
|
|
|
/**
|
|
* @param bool $bAllowDelete
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function SetAllowDelete(bool $bAllowDelete)
|
|
{
|
|
$this->bAllowDelete = (bool) $bAllowDelete;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets if the field should be displayed opened on initialization
|
|
*
|
|
* @param bool $bDisplayOpened
|
|
*
|
|
* @return FileUploadField
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
public function SetDisplayOpened(bool $bDisplayOpened): FileUploadField
|
|
{
|
|
$this->bDisplayOpened = $bDisplayOpened;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns if the field should be displayed opened on initialization
|
|
*
|
|
* @return boolean
|
|
* @since 3.2.1 N°7534
|
|
*/
|
|
public function GetDisplayOpened(): bool
|
|
{
|
|
return $this->bDisplayOpened;
|
|
}
|
|
}
|