| Server IP : 185.252.147.100 / Your IP : 216.73.216.196 Web Server : nginx/1.27.3 System : Linux mitrofanov.ru 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : mitr ( 1000) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/html/kanboard/app/Decorator/ |
Upload File : |
<?php
namespace Kanboard\Decorator;
use Kanboard\Core\Cache\CacheInterface;
use Kanboard\Model\ColumnMoveRestrictionModel;
/**
* Class ColumnMoveRestrictionCacheDecorator
*
* @package Kanboard\Decorator
* @author Frederic Guillot
*/
class ColumnMoveRestrictionCacheDecorator
{
protected $cachePrefix = 'column_move_restriction:';
/**
* @var CacheInterface
*/
protected $cache;
/**
* @var ColumnMoveRestrictionModel
*/
protected $columnMoveRestrictionModel;
/**
* ColumnMoveRestrictionDecorator constructor.
*
* @param CacheInterface $cache
* @param ColumnMoveRestrictionModel $columnMoveRestrictionModel
*/
public function __construct(CacheInterface $cache, ColumnMoveRestrictionModel $columnMoveRestrictionModel)
{
$this->cache = $cache;
$this->columnMoveRestrictionModel = $columnMoveRestrictionModel;
}
/**
* Proxy method to get sortable columns
*
* @param int $project_id
* @param string $role
* @return array|mixed
*/
public function getSortableColumns($project_id, $role)
{
$key = $this->cachePrefix.$project_id.$role;
$columnIds = $this->cache->get($key);
if ($columnIds === null) {
$columnIds = $this->columnMoveRestrictionModel->getSortableColumns($project_id, $role);
$this->cache->set($key, $columnIds);
}
return $columnIds;
}
}