moved composers, filters and routes back to application, delete routes folder

This commit is contained in:
Michael Hasselbring
2011-08-03 08:26:40 -05:00
parent 7f493421c4
commit 4424cee0af
3 changed files with 144 additions and 0 deletions

27
application/composers.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
return array(
/*
|--------------------------------------------------------------------------
| View Composers
|--------------------------------------------------------------------------
|
| View composers provide a convenient way to add common elements to a view
| each time it is created. For example, you may wish to bind a header and
| footer partial each time the view is created.
|
| The composer will receive an instance of the view being created, and is
| free to modify the view however you wish. Be sure to always return the
| view instance at the end of your composer.
|
| For more information, check out: http://laravel.com/docs/start/views#composers
|
*/
'home/index' => function($view)
{
return $view;
},
);