Berkarar/plugins/tps/shops/controllers/Notification.php

19 lines
505 B
PHP

<?php namespace Tps\Shops\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class Notification 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('Tps.Shops', 'main-menu-item', 'side-menu-item8');
}
}