FUEL CMS User Guide : Version 1.5.2


Module Tools

New to FUEL CMS 1.0 is the ability to create advanced module tools that can be accessed from the inline editing toolbar to perform certain actions. For example, the pag_analysis and validate modules both provide tools to analyze and validate the contents of the currently viewed page.

To add a toolbar tool, you can simply add a 'toolbar', parameter in your advanced modules configuration. The value should be an array with the key being the URI path relative to the module and the value being the name you want displayed in the tools list dropdown.

Example #1 (from the Page Analysis module)

// the inline editing toolbar for doing page analysis
$config['page_analysis']['toolbar'] = array(
									'toolbar' => 'Page Analysis',
							);

Example #2 (from the Validate module)

// the inline editing toolbar for doing validation for HTML, links and page weight
$config['validate']['toolbar'] = array(
									'toolbar/html' => 'Validate HTML',
									'toolbar/links' => 'Validate Links',
									'toolbar/size_report' => 'Page Weight',
							);