Package Data | |
---|---|
Maintainer Username: | michaeljennings |
Maintainer Contact: | coreplex1@gmail.com (Coreplex) |
Package Create Date: | 2015-04-07 |
Package Last Update: | 2018-09-26 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-14 15:09:07 |
Package Statistics | |
---|---|
Total Downloads: | 294 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 4 |
Total Forks: | 0 |
Total Open Issues: | 0 |
A PHP 5.4+ package to create navigation menus, and handle active and permissions.
This package requires PHP 5.4+, and includes a Laravel 5 Service Provider and Facade.
We recommend installing the package through composer. You can either call composer require coreplex/navigator
in
your command line, or add the following to your composer.json
and then run either composer install
or composer update
to download the package.
"coreplex/navigator": "~0.1"
To use the package with Laravel 5 firstly add the service providers to the list in
app/config/app.php
.
'providers' => array(
Coreplex\Core\CoreServiceProvider::class,
Coreplex\Navigator\NavigatorServiceProvider::class,
);
Then to run php artisan vendor:publish
in your command line to publish the config.
To register a menu you add it into the menus
array in the navigator config file. To register a menu you set a key to
retrieve a the menu by as the key, and the class to build the menu as the value.
'menus' => [
'foo' => 'Navigators\FooNavigator'
]
By default the menu class will user a method called design
, but if you want to set the method name your self just
separate the class and method name with an @ symbol.
'menus' => [
'foo' => 'Navigators\FooNavigator@bar'
]
To see how to create menus check the creating menus section below.
Once you've registered a menu to retrieve it use the get
method.
$menu = $navigator->get('foo');
To create a menu you need to return a nested array of menu items. Each item is made up of a url, any nested menu items, and then any attributes wish the item to have. As an example check the code below.
class Sidebar
{
public function design()
{
return [
[
'url' => '/',
'title' => 'Home',
],
[
'url' => 'about',
'title' => 'about',
'items' => [
[
'url' => 'meet-the-team',
'title' => 'Meet The Team'
]
]
]
];
}
}
This will add two items to then menu; one for the home page and the other is the about page. The about page also has nested items so we can display them in a drop down when rendering.
The url isn't required, but is used to check if the item is the active item.
You can add any attributes you wish to the menu items. In the example a title attribute has been set, but we could also add an icon, class etc. here and then access it on the item when it is rendered.
Occasionally you may need to only show a menu item if a condition is met; to do this with use filters.
To register a filter add it to the filters array in the config file by setting a unique key as a the key and a class to use as the value.
'filters' => [
'hasAccess' => 'Navigators\Filters\HasAccess'
]
The filter classes by default use a method called filter
but again if you want to specify a method then separate the
class and method with an @ symbol.
'filters' => [
'hasAccess' => 'Navigators\Filters\HasAccess@foo'
]
To call a filter no a menu item add a filter attribute to the menu item.
[
'url' => '/admin',
'title' => 'admin',
'filter' => 'hasAccess',
'permission' => 'admin.access',
],
The method on the filter class will then be passed the item so you can do any checking you need to.
use Coreplex\Navigator\Contracts\Item;
class HasAccess
{
public function filter(Item $item)
{
if ($user->canAccess($item->permission) {
return true;
}
return false;
}
}
To render a menu you have a couple of options. Either you can set a template to render it to, or you can access the menus properties.
To render with a template simply call the render
method on the menu. This will either use the default view set in the
config file, or you can pass the path to the template to use to the render method.
$menu = $navigator->get('foo');
$menu->render();
$menu->render('path/to/template.php');
This package comes with a default template as an example.
To access the items in a menu use the items
method or just pass the menu through a iterator.
$items = $menu->items();
OR
foreach ($menu as $item) {
//
}
Then once you've got a menu item you can can check if it is the active menu item by calling the isActive
method.
$item->isActive();
Then you can access any properties set on the item by just accessing the key on the item object. For example if you have set a url for the item then I could do the following.
$item->url;