19 lines
492 B
PHP
Executable File
19 lines
492 B
PHP
Executable File
<?php namespace Romanah\Bagisto\Controllers;
|
|
|
|
use Backend\Classes\Controller;
|
|
use BackendMenu;
|
|
|
|
class Slider 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('Romanah.Bagisto', 'main-menu-item');
|
|
}
|
|
}
|