Source Code
File: /private/mvc/controllers/_boot.php
<?php
/**
* This will retreive the url being passed in.
*/
switch (evar::get('pageurl', 'url')) {
case 'media/css':
// header("Content-type: text/css", true);
echo views::MediaInclude('css', CORE_HTML_INCLUDE_CSS);
exit;
break;
case 'media/js';
// header("Content-type: application/javascript", true);
echo views::MediaInclude('js', CORE_HTML_INCLUDE_JS);
exit;
break;
default:
echo 'all is running';
exit;
}
?>
© Richard Wagener (securebucket.com)
All rights reserved.
Privacy Policy | Terms of Use



