42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
|
|
<?php
|
||
|
|
namespace DynCom\mysyde\common\classes;
|
||
|
|
use DynCom\mysyde\common\interfaces\CriteriaHelperInterface;
|
||
|
|
use DynCom\mysyde\common\interfaces\GenericDBQueryWrapperInterface;
|
||
|
|
use DynCom\mysyde\common\interfaces\Repository;
|
||
|
|
use DynCom\mysyde\common\traits\genericRepositoryTrait;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class PageRepository
|
||
|
|
* @package DynCom\mysyde\common\classes
|
||
|
|
*/
|
||
|
|
class PageRepository implements Repository
|
||
|
|
{
|
||
|
|
|
||
|
|
use genericRepositoryTrait;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param GenericDBQueryWrapperInterface $db
|
||
|
|
* @param PageConfig $config
|
||
|
|
* @param CriteriaHelperInterface $criteriaValidationService
|
||
|
|
* @param PageCollection $collection
|
||
|
|
* @param $cacheAll
|
||
|
|
*/
|
||
|
|
public function __construct(GenericDBQueryWrapperInterface $db, PageConfig $config, CriteriaHelperInterface $criteriaValidationService, PageCollection $collection, $cacheAll=false)
|
||
|
|
{
|
||
|
|
$this->db = $db;
|
||
|
|
$this->config = $config;
|
||
|
|
$this->criteriaValidationService = $criteriaValidationService;
|
||
|
|
$this->collection = $collection;
|
||
|
|
$this->collectionEntryClassName = $this->collection->getEntryClassName();
|
||
|
|
$this->cacheAll = $cacheAll;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return Page
|
||
|
|
*/
|
||
|
|
public function getNullObject()
|
||
|
|
{
|
||
|
|
return new Page($this->config);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|