| 1 | <?php |
||
| 8 | trait AdminTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Pagerfanta |
||
| 12 | */ |
||
| 13 | protected $pager; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return object |
||
| 17 | */ |
||
| 18 | public abstract function getUniqueEntity(); |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return Pagerfanta |
||
| 22 | */ |
||
| 23 | public function getPager() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getEntityLabel() |
||
| 48 | } |
||
| 49 |