项目作者: dwightwatson

项目描述 :
Laravel helper for recognising the current route, controller and action.
高级语言: PHP
项目地址: git://github.com/dwightwatson/active.git
创建时间: 2014-03-06T10:06:46Z
项目社区:https://github.com/dwightwatson/active

开源协议:MIT License

下载


Active for Laravel

Build Status
Total Downloads
Latest Stable Version
Latest Unstable Version
License
Buy us a tree

Active is a helper package for Laravel that makes it easy to recognize the current path or route, useful for adding ‘active’ classes (like those used in the Boostrap framework) and performing other actions only when a certain route is active. It also includes helpers for retrieving the current controller and action names.

Installation

First, simply require the package through Composer.

  1. composer require watson/active

Using Laravel 5.1? The latest version of the package that will work for you is 2.0.4.

Next, add the service provider in your config/app.php file.

Watson\Active\ActiveServiceProvider::class

If you’d like to use the Facade instead of the helper functions, add it to the aliases array.

'Active' => Watson\Active\Facades\Active::class

Using Active

Helper functions

Active ships with a couple of helper functions which make it easy to use without the facade or creating an instance of your own.

  1. active()
  2. is_active()

Using active()

You pass an array of routes or paths you want to see are the current page, and if any match this function will return the string active, for Bootstrap. Alternatively, you can pass a custom return string as the second argument.

  1. active(['login', 'users/*', 'posts.*', 'pages.contact']); // Returns 'active' if the current route matches any path or route name.
  2. active(['login', 'logout'], 'active-class'); // Returns 'active-class' if the current route is 'login' or 'logout'.
  3. active(['login', 'logout'], 'active-class', 'fallback-class'); // Returns 'fallback-class' if the current route is not 'login' or 'logout'.

In the first example, the function will return the string active if the current path is login, starts with users/ or if the name of the current route is posts.create.

Do note that a number of argument types are provided: you can use a path string, you can use a path string with a wildcard (using the *) and you can also use named routes.

You can use this function with your links to give them an active state.

  1. <a href="{{ route('posts.index') }}" class="{{ active('posts.index') }}">All posts</a>

You can also provide certain paths or routes to be exluded when being considered.

  1. active(['pages/*', 'not:pages/contact'])
  2. active(['pages.*', 'not:pages.contact'])

Using is_active()

This works much the same as active(), you can pass the paths and routes to it but instead it will return a boolean if the current page matches.

  1. @if (is_active('posts/*'))
  2. You're looking at a blog post!
  3. @endif

Additional helpers

Two additional functions are provided to get the current controller and action, if your routing is being handled by a controller for a request. These functions will return the lowercase controller/action name, without the method of the request. Here is an example for a request that is routed to `FooController@getBar’:

  1. $controller = controller_name(); // foo
  2. $action = action_name(); // bar

Licence

Active for Laravel is 100% free and open-source, under the MIT license. Use it however you want.

This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.