Download the PHP package iatstuti/simple-menu without Composer

On this page you can find all versions of the php package iatstuti/simple-menu. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package simple-menu

Simple menu manager v2.0.0

Build Status Scrutinizer Code Quality

A simple menu manager.

There are a number of existing packages available that handle menus, but they all tend to be over-complicated for simple scenarios where all you want to do is define one or more menus.

This package allows you to define multiple menus via a manager, then add links across your project before rendering using a given presenter.

Installation

Basic usage

Menu options

If you are defining menu options at different times, you can define the sort order by passing the weight key/value pair as options to the link and subMenu methods. Your menu will automatically be sorted by the weights you define.

When rendered, Fourth Link will before ahead of Third Link and both will appear after Link label, Another link, and First sub menu as defined above. Sub menu items will also be sorted in a similar way.

Active menu item

There are two ways of marking an item as active; either via options, or by chaining the active method to a menu link.

Menu presenters

The package ships with a default unordered list presenter.

Should you want to create your own, you may do so by implementing the Iatstuti\SimpleMenu\Presenters\MenuPresenter interface, providing a render method. The Menu object should be provided via the presenter's constructor.

This method ought to iterate over the items in your menu, recursively rendering any objects of type Menu and displaying any of type MenuItem directly.

If you want to use different presenter, pass the class path to the Menu::render() method.

Usage in Laravel

This package includes a service provider and facade, which can be used within the Laravel Framework. This is useful if you want to define a main menu in your main AppServiceProvider, but want to define additional menu items in other parts of your applications i.e. in different modules with their own service providers.

Note You must include the SimpleMenuServiceProvider before any other providers that may need to use the functionality.

First, add the service provider to your config/app.php providers array:

If you wish, you can then add the SimpleMenu facade to your aliases array:

You can then register your first menu in your AppServiceProvider:

You can define as many different menus as you need in your application; for example, you might also have a sidebar-navigation with its own menu items.

When adding items to your navigation menu, you'll need to do this in your provider's boot method:


All versions of simple-menu with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ~5.0
iatstuti/support Version ~1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package iatstuti/simple-menu contains the following files

Loading the files please wait ....