29 lines
615 B
PHP
29 lines
615 B
PHP
|
|
<?php
|
||
|
|
namespace DynCom\mysyde\common\interfaces;
|
||
|
|
/**
|
||
|
|
* Created by PhpStorm.
|
||
|
|
* User: Bauer
|
||
|
|
* Date: 25.07.2015
|
||
|
|
* Time: 10:45
|
||
|
|
*/
|
||
|
|
interface RepositoryListView
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param array $criteria
|
||
|
|
* @param int $offset
|
||
|
|
* @param int $limit
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
public function render(array $criteria, $offset = 0, $limit = 0);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param $filename
|
||
|
|
* @param array $criteria
|
||
|
|
* @param int $offset
|
||
|
|
* @param int $limit
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
public function renderToFilePath($filename, array $criteria, $offset = 0, $limit = 0);
|
||
|
|
|
||
|
|
}
|