source: trunk/services/css.php @ 106

Last change on this file since 106 was 106, checked in by scdev, 18 years ago

Q - Updated codebase css

File size: 470 bytes
Line 
1<?php
2/**
3 * css.php
4 * Code by Strangecode :: www.strangecode.com :: This document contains copyrighted information
5 *
6 * This file works with the CSS.inc.php class to print a "normal" css file and
7 * is to be included as any css file would be. It should not be necessary to
8 * ever modify this file.
9 */
10
11require_once dirname(__FILE__) . '/_config.inc.php';
12
13if (is_a($css, 'CSS')) {
14    $css->headers(getFormData('app'));
15    $css->output(getFormData('app'));
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.