Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created February 28, 2011 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steffenr/847061 to your computer and use it in GitHub Desktop.
Save steffenr/847061 to your computer and use it in GitHub Desktop.
cakephp, booster
<?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