Example #1
0
 /**
  * Static helper to execute a full request for CSS output. This will
  * instantiate the object, pull the data from $_REQUEST, and then output
  * the CSS.
  */
 public static function run()
 {
     $cssOutput = new self($_REQUEST);
     if ($cssOutput->handleIfModifiedSinceHeader($_SERVER)) {
         $cssOutput->displayCss($cssOutput->renderCss());
     }
 }