Front-end utility menu for SilverStripe websites featuring administration and development tools
Go to file
Jono Menz 3f85bd14fb Initial commit 2014-08-13 10:11:18 +09:30
_config Initial commit 2014-08-13 10:11:18 +09:30
code Initial commit 2014-08-13 10:11:18 +09:30
css Initial commit 2014-08-13 10:11:18 +09:30
images Initial commit 2014-08-13 10:11:18 +09:30
javascript Initial commit 2014-08-13 10:11:18 +09:30
scss Initial commit 2014-08-13 10:11:18 +09:30
templates Initial commit 2014-08-13 10:11:18 +09:30
README.md Initial commit 2014-08-13 10:11:18 +09:30
_config.php Initial commit 2014-08-13 10:11:18 +09:30
composer.json Initial commit 2014-08-13 10:11:18 +09:30

README.md

Diagram of module

This module is intended to replicate and expand upon the functionality provided by SilverStripe's built-in SilverStripeNavigator class. It provides a handy front-end menu for CMS users which offers these features:

For Content Authors

  • Indicates to a user that they are logged in
  • Indicates whether they are viewing draft or live content
  • Quickly edit the page you're viewing

For Developers

  • When in Dev Mode links are included for accessing most of SilverStripe's URL Variable Tools
  • Developers can access these tools on a live website by nominating themselves as a developer in the site config

##Requirements

SilverStripe 3.1

##Installation

Composer / Packagist (best practice)
Add "jonom/silverstripe-betternavigator" to your requirements.

Manually
Download, place the folder in your project root, rename it to 'betternavigator' (if applicable) and run a dev/build?flush=1.

##How to use

Just place $BetterNavigator somewhere in your template(s). If your website uses caching, make sure BetterNavigator's output is excluded.

##Customisation

Scripts and CSS are included via the BetterNavigator.ss template, so you can completely customise the front-end code and included links by copying or creating your own BetterNavigator.ss template.

The BetterNavigator.ss template's scope is set to the page that is being viewed, so any methods available in your page controller will be available in the BetterNavigator.ss template. This should allow you to add custom links by page type if you wish.

##Known issues

  • Probably won't work in IE8 or lower.