19 lines
508 B
PHP
19 lines
508 B
PHP
<?php namespace Akami\Coffe30\Controllers;
|
|
|
|
use Backend\Classes\Controller;
|
|
use BackendMenu;
|
|
|
|
class Comment extends Controller
|
|
{
|
|
public $implement = [ 'Backend\Behaviors\ListController', 'Backend\Behaviors\FormController' ];
|
|
|
|
public $listConfig = 'config_list.yaml';
|
|
public $formConfig = 'config_form.yaml';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
BackendMenu::setContext('Akami.Coffe30', 'main-menu-item', 'side-menu-item2');
|
|
}
|
|
}
|