Maslosoft Manganel API
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
<?php
/**
* This software package is licensed under `AGPL, Commercial` license[s].
*
* @package maslosoft/manganel
* @license AGPL, Commercial
*
* @copyright Copyright (c) Peter Maselkowski <pmaselkowski@gmail.com>
* @link https://maslosoft.com/manganel/
*/
namespace Maslosoft\Manganel;
use Maslosoft\Mangan\Abstracts\AbstractScopeManager;
use Maslosoft\Mangan\Interfaces\CriteriaAwareInterface;
use Maslosoft\Mangan\Interfaces\ScopeManagerInterface;
use Maslosoft\Mangan\Interfaces\WithCriteriaInterface;
use Maslosoft\Manganel\Interfaces\ModelsAwareInterface;
use Maslosoft\Manganel\Traits\UniqueModelsAwareTrait;
/**
* Scope Manager with support for many models
*
* @author Piotr Maselkowski <pmaselkowski at gmail.com>
*/
class MultiScopeManager extends AbstractScopeManager implements ScopeManagerInterface,
ModelsAwareInterface
{
use UniqueModelsAwareTrait;
/**
*
* @param object $model Base model used for criteria
* @param object[] $models Additional models used for criteria
*/
public function __construct($model, $models = [])
{
$this->setModel($model);
$this->setModels($models);
}
public function getNewCriteria($criteria = null)
{
$newCriteria = new SearchCriteria($criteria);
$newCriteria->decorateWith($this->getModel());
$newCriteria->setModels($this->getModels());
return $newCriteria;
}
protected function getModelCriteria()
{
$criteria = new SearchCriteria;
foreach ($this->getModels() as $model)
{
$criteria->mergeWith($this->getOneModelCriteria($model));
}
$criteria->setModels($this->getModels());
if (empty($criteria))
{
return $this->getNewCriteria();
}
return $criteria;
}
private function getOneModelCriteria($model)
{
if ($model instanceof WithCriteriaInterface)
{
return $model->getDbCriteria();
}
elseif ($model instanceof CriteriaAwareInterface)
{
return $model->getCriteria();
}
else
{
return new SearchCriteria;
}
}
}
API documentation generated by ApiGen