| 1 | <?php |
||
| 10 | class PublicationTypeAdmin extends Admin |
||
| 11 | { |
||
| 12 | protected $baseRouteName = 'fenrizbes_publication_type'; |
||
| 13 | protected $baseRoutePattern = '/fenrizbes/publication'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | protected $datagridValues = array( |
||
| 19 | '_sort_order' => 'ASC', |
||
| 20 | '_sort_by' => 'Title' |
||
| 21 | ); |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | protected function configureRoutes(RouteCollection $collection) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | protected function configureListFields(ListMapper $listMapper) |
||
| 54 | } |
||
| 55 |