2017 © Pedro Peláez
 

library minicrumbs

Portable lightweight breadcrumbs library

image

breadcrumbs/minicrumbs

Portable lightweight breadcrumbs library

  • Tuesday, October 24, 2017
  • by TropicalBastos
  • Repository
  • 0 Watchers
  • 0 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

MiniCrumbs

Super portable, lightweight breadcrumbs library, (*1)

To install:

composer require breadcrumbs/minicrumbs, (*2)


, (*3)

The way it works is it parses the request URI, ie. /home/about/company into an an iterable array of breadcrumb objects so that you can render something like: "Home | About | Company" in your markup with all the necessary links without you having to worry about the formatting, names or links., (*4)

Examples

It's as easy as:, (*5)

use MiniCrumbs\MiniCrumbs;

$crumbs = new MiniCrumbs();

This will return you an instance of MiniCrumbs of which you can:, (*6)

$crumbsArray = $crumbs->parse();

This will give you an iterable object which you can loop in your templates, though a premade render function is available to the lazier ones:, (*7)

$crumbs->render();

Will render the default breadcrumbs markup, (*8)

Documentaion

The Minicrumbs constructor takes the following arguments:, (*9)

MiniCrumbs($format = 'standard', $home='home', $options = array())

Format:

'upper', 'lower', ''standard' - (string) how the breadcrumbs should be formatted, (*10)

Home:

defaults to ''home' - (string) alias for the first breadcrumb linking to home, (*11)

Options:

array of options - developer options for testing e.g ['test' => true], (*12)

The Versions

24/10 2017

dev-master

9999999-dev

Portable lightweight breadcrumbs library

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

The Development Requires

by Avatar TropicalBastos

19/10 2017

1.1

1.1.0.0

Portable lightweight breadcrumbs library

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

The Development Requires

by Avatar TropicalBastos

18/10 2017

v1.0

1.0.0.0

Portable lightweight breadcrumbs library

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

The Development Requires

by Avatar TropicalBastos