看板初始化提交
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Decorator;
|
||||
|
||||
use Kanboard\Core\Cache\CacheInterface;
|
||||
use Kanboard\Model\ColumnRestrictionModel;
|
||||
|
||||
/**
|
||||
* Class ColumnRestrictionCacheDecorator
|
||||
*
|
||||
* @package Kanboard\Decorator
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
class ColumnRestrictionCacheDecorator
|
||||
{
|
||||
protected $cachePrefix = 'column_restriction:';
|
||||
|
||||
/**
|
||||
* @var CacheInterface
|
||||
*/
|
||||
protected $cache;
|
||||
|
||||
/**
|
||||
* @var ColumnRestrictionModel
|
||||
*/
|
||||
protected $columnRestrictionModel;
|
||||
|
||||
/**
|
||||
* ColumnMoveRestrictionDecorator constructor.
|
||||
*
|
||||
* @param CacheInterface $cache
|
||||
* @param ColumnRestrictionModel $columnMoveRestrictionModel
|
||||
*/
|
||||
public function __construct(CacheInterface $cache, ColumnRestrictionModel $columnMoveRestrictionModel)
|
||||
{
|
||||
$this->cache = $cache;
|
||||
$this->columnRestrictionModel = $columnMoveRestrictionModel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Proxy method to get sortable columns
|
||||
*
|
||||
* @param int $project_id
|
||||
* @param string $role
|
||||
* @return array|mixed
|
||||
*/
|
||||
public function getAllByRole($project_id, $role)
|
||||
{
|
||||
$key = $this->cachePrefix.$project_id.$role;
|
||||
$columnRestrictions = $this->cache->get($key);
|
||||
|
||||
if ($columnRestrictions === null) {
|
||||
$columnRestrictions = $this->columnRestrictionModel->getAllByRole($project_id, $role);
|
||||
$this->cache->set($key, $columnRestrictions);
|
||||
}
|
||||
|
||||
return $columnRestrictions;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user