atijust / ronin-blade
Laravel Blade template engine as a standalone component
dev-master
2015-09-19 22:20 UTC
Requires
- php: >=5.4
- illuminate/events: ~5.0
- illuminate/view: ~5.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-11-09 18:38:17 UTC
README
Laravel Blade template engine as a standalone component.
<?php require_once __DIR__ . '/vendor/autoload.php'; $blade = Ronin\Blade::make(__DIR__ . '/views', __DIR__ . '/cache'); echo $blade->make('index', ['message' => 'Hello, world!'])->render();
Installation
Require this package in your composer.json and run composer update command.
{ "require": { "atijust/ronin-blade": "dev-master@dev" } }
Usage
\Ronin\Blade::make()
returns a instance of Illuminate\View\Factory
.
$blade = Ronin\Blade::make(__DIR__ . '/views', __DIR__ . '/cache'); echo get_class($blade); // => Illuminate\View\Factory
You can use all blade features.
// Add a piece of shared data to the environment. $blade->share('defaultTitle', 'Ronin Blade'); // Register a view composer event. $blade->composer('index', 'IndexViewComposer'); // Register a handler for custom directives. $blade->getEngineResolver()->resolve('blade')->getCompiler()->directive( 'datetime', function($expression) { return "<?php echo with{$expression}->format('m/d/Y H:i'); ?>"; } ); // Get the evaluated view contents for the given view. $view = $blade->make('index');
By default, view composer and view creater are resolved by the ronin's internal container. If you want to use your own container, set the third parameter of \Ronin\Blade::make()
to any container you like.
$container = new \Illuminate\Container\Container(); $container->singleton('IndexViewComposer', function () { return new IndexViewComposer(); }); $blade = \Ronin\Blade::make(__DIR__ . '/views', __DIR__ . '/cache', $container); $blade->composer('index', 'IndexViewComposer'); // Resolved by $container
License
Ronin Blade is open-sourced software licensed under the MIT license.