Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
1bbdb611
Unverified
Commit
1bbdb611
authored
Jul 21, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create an abstract sidebar class to avoid repetition
parent
c93dbd28
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
AbstractAdminSidebar.php
Modules/Core/Sidebar/AbstractAdminSidebar.php
+38
-0
No files found.
Modules/Core/Sidebar/AbstractAdminSidebar.php
0 → 100644
View file @
1bbdb611
<?php
namespace
Modules\Core\Sidebar
;
use
Maatwebsite\Sidebar\Menu
;
use
Modules\Core\Events\BuildingSidebar
;
use
Modules\User\Contracts\Authentication
;
use
Maatwebsite\Sidebar\SidebarExtender
;
abstract
class
AbstractAdminSidebar
implements
SidebarExtender
{
/**
* @var Authentication
*/
protected
$auth
;
/**
* @param Authentication $auth
*
* @internal param Guard $guard
*/
public
function
__construct
(
Authentication
$auth
)
{
$this
->
auth
=
$auth
;
}
public
function
handle
(
BuildingSidebar
$sidebar
)
{
$sidebar
->
add
(
$this
->
extendWith
(
$sidebar
->
getMenu
()));
}
/**
* Method used to define your sidebar menu groups and items
* @param Menu $menu
* @return Menu
*/
abstract
public
function
extendWith
(
Menu
$menu
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment