Created
February 28, 2011 08:09
-
-
Save steffenr/847061 to your computer and use it in GitHub Desktop.
cakephp, booster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include('booster/booster_inc.php'); | |
$booster = new Booster(); | |
$booster->css_source = array( | |
'../css/smoothness/jquery-ui-1.8.5.custom.css', | |
'../css/jquery.fcbkcomplete.css', | |
'../css/formalize/formalize.css', | |
); | |
$booster->js_source = array( | |
'../js/lib/jquery-1.4.4.min.js', | |
'../js/lib/jquery-ui-1.8.5.custom.min.js', | |
); | |
// Ausgabe | |
echo $booster->css_markup(); | |
echo $booster->js_markup(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment