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
7de37fc7
Unverified
Commit
7de37fc7
authored
Jul 21, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Making existing sidebar event listeners to use the abstract sidebar class remove duplicate logic
parent
2bcf8096
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
48 deletions
+4
-48
RegisterDashboardSidebar.php
...es/Dashboard/Events/Handlers/RegisterDashboardSidebar.php
+2
-24
RegisterPageSidebar.php
Modules/Page/Events/Handlers/RegisterPageSidebar.php
+2
-24
No files found.
Modules/Dashboard/Events/Handlers/RegisterDashboardSidebar.php
View file @
7de37fc7
...
...
@@ -5,32 +5,10 @@ namespace Modules\Dashboard\Events\Handlers;
use
Maatwebsite\Sidebar\Group
;
use
Maatwebsite\Sidebar\Item
;
use
Maatwebsite\Sidebar\Menu
;
use
Maatwebsite\Sidebar\SidebarExtender
;
use
Modules\Core\Events\BuildingSidebar
;
use
Modules\User\Contracts\Authentication
;
use
Modules\Core\Sidebar\AbstractAdminSidebar
;
class
RegisterDashboardSidebar
implements
SidebarExtende
r
class
RegisterDashboardSidebar
extends
AbstractAdminSideba
r
{
/**
* @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
()));
}
/**
* @param Menu $menu
* @return Menu
...
...
Modules/Page/Events/Handlers/RegisterPageSidebar.php
View file @
7de37fc7
...
...
@@ -5,32 +5,10 @@ namespace Modules\Page\Events\Handlers;
use
Maatwebsite\Sidebar\Group
;
use
Maatwebsite\Sidebar\Item
;
use
Maatwebsite\Sidebar\Menu
;
use
Maatwebsite\Sidebar\SidebarExtender
;
use
Modules\Core\Events\BuildingSidebar
;
use
Modules\User\Contracts\Authentication
;
use
Modules\Core\Sidebar\AbstractAdminSidebar
;
class
RegisterPageSidebar
implements
SidebarExtende
r
class
RegisterPageSidebar
extends
AbstractAdminSideba
r
{
/**
* @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
()));
}
/**
* @param Menu $menu
* @return 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