<?php

//set the bundle path
Laravel\Autoloader::map(array('Delicious\\Delicious' => path('bundle') . 'delicious/delicious.php'));
Beispiel #2
0
<?php

Laravel\Autoloader::map(array('Feed' => path('bundle') . 'feed/feed.php'));
<?php

Laravel\Autoloader::map(array('Authority' => __DIR__ . '/authority' . EXT));
Authority::initialize(Auth::user());
<?php

Laravel\Autoloader::map(array('Twitter' => path('bundle') . 'twitterfeed/twitter' . EXT));
Beispiel #5
0
<?php

//set the bundle path
Laravel\Autoloader::map(array('Tumblr\\Tumblr' => path('bundle') . 'tumblr/tumblr.php'));
Beispiel #6
0
<?php

Laravel\Autoloader::map(array('Sitemap' => path('bundle') . 'sitemap/sitemap.php'));
Beispiel #7
0
<?php

Laravel\Autoloader::map(array('Squire_Controller' => __DIR__ . DS . 'controllers' . DS . 'squire.php', 'Squire\\Request' => __DIR__ . DS . 'libraries' . DS . 'request.php', 'Squire\\Response' => __DIR__ . DS . 'libraries' . DS . 'response.php'));
class_alias('Squire\\Request', 'Request');
class_alias('Squire\\Response', 'Response');
// Load config
Config::get('squire::squire');
function squire_extend_config($key, $value)
{
    if (is_array($value) && $key != 'nav') {
        foreach ($value as $key1 => $value2) {
            squire_extend_config($key . '.' . $key1, $value2);
        }
        return;
    }
    Config::set('squire::squire.' . $key, $value);
}
// Apply app config
foreach (Config::get('squire', array()) as $key => $value) {
    squire_extend_config($key, $value);
}
// Insert Squire JS
Section::append('head', View::make('squire::sq_js')->render());
include __DIR__ . DS . 'composers.php';
Beispiel #8
0
<?php

Laravel\Autoloader::map(array('Langbuilder\\Dir' => path('bundle') . 'language-builder/libraries/dir.php', 'Langbuilder\\Compare' => path('bundle') . 'language-builder/libraries/compare.php', 'Langbuilder\\Utilities' => path('bundle') . 'language-builder/libraries/utilities.php'));
<?php

//set the bundle path
Laravel\Autoloader::map(array('Appcelerator\\Appcelerator' => path('bundle') . 'appcelerator/appcelerator.php'));