Removing reorder behaviour from Feed controller
This commit is contained in:
parent
cecb01901f
commit
1fd2880216
@ -1,19 +1,21 @@
|
||||
<?php namespace jasonwilliams\feed\Controllers;
|
||||
|
||||
use Backend\Classes\Controller;
|
||||
use BackendMenu;
|
||||
|
||||
class Feed extends Controller
|
||||
{
|
||||
public $implement = [ 'Backend\Behaviors\ListController', 'Backend\Behaviors\FormController', 'Backend\Behaviors\ReorderController' ];
|
||||
|
||||
public $listConfig = 'config_list.yaml';
|
||||
public $formConfig = 'config_form.yaml';
|
||||
public $reorderConfig = 'config_reorder.yaml';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
BackendMenu::setContext('jasonwilliams.feed', 'main-menu-item');
|
||||
}
|
||||
}
|
||||
<?php namespace jasonwilliams\feed\Controllers;
|
||||
|
||||
use Backend\Classes\Controller;
|
||||
use BackendMenu;
|
||||
|
||||
class Feed 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('jasonwilliams.feed', 'main-menu-item');
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
<div data-control="toolbar">
|
||||
<a href="<?= Backend::url('jasonwilliams/feed/feed/create') ?>" class="btn btn-primary oc-icon-plus"><?= e(trans('backend::lang.form.create')) ?></a>
|
||||
<a href="<?= Backend::url('jasonwilliams/feed/feed/reorder') ?>" class="btn btn-default oc-icon-list"><?= e(trans('backend::lang.reorder.default_title')) ?></a>
|
||||
<button
|
||||
class="btn btn-default oc-icon-trash-o"
|
||||
disabled="disabled"
|
||||
@ -16,4 +15,10 @@
|
||||
data-stripe-load-indicator>
|
||||
<?= e(trans('backend::lang.list.delete_selected')) ?>
|
||||
</button>
|
||||
|
||||
<a
|
||||
href="<?= Backend::url('jasonwilliams/feed/import') ?>"
|
||||
class="btn btn-default oc-icon-upload">
|
||||
Fetch posts
|
||||
</a>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user