Adamsmeat/Output
Backend output manager for the browser, (*1)
Configuration
<?php
return array(
'providers' => 'Adamsmeat\Output\OutputServiceProvider',
'aliases' => array(
'Output' => 'Adamsmeat\Output\OutputFacade',
)
);
?>
Usage
Chain the following methods to return Illuminate\View\View object, (*2)
- setTheme() No need to call if you did not create any new theme.
- cfg() When you need to modify this's packages config by passing an array.
- sendView() returns the final view based off runtime config
Global variables
Access in view files through the g('key') or Output::g(key) function which is the array set in output::config file with key 'globals'., (*3)
It can be access through $g array but to eliminate errors, escaping, etc, we will use helper functions, (*4)
Notes
-
keys - avoid special characters(.,-) on identifiers that are meant to be names of variable, functions, etc.
-
namespace - keep namespacing at all times if possible, if one can be placed under a category, by all means, do so