17 lines
542 B
PHP
17 lines
542 B
PHP
<?php
|
||
|
||
namespace Lycoreco\Apps\Admin\Controllers;
|
||
|
||
class AdminReviewListController extends Abstract\AdminListController
|
||
{
|
||
protected $model_сlass_name = "Lycoreco\Apps\Recipes\Models\ReviewsModel";
|
||
protected $table_fields = array(
|
||
'Title' => 'field_title',
|
||
'Rating' => 'field_rating',
|
||
'Status ' => 'get_status()',
|
||
'Creaated at' => 'field_created_at',
|
||
);
|
||
protected $single_router_name = 'admin:review';
|
||
protected $verbose_name = "review";
|
||
protected $verbose_name_multiply = "reviews";
|
||
} |