source: trunk/services/css.php @ 211

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

Q - Updated codebase css

File size: 470 bytes
RevLine 
[1]1<?php
2/**
[106]3 * css.php
[1]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')) {
[106]14    $css->headers(getFormData('app'));
15    $css->output(getFormData('app'));
[1]16}
17
18?>
Note: See TracBrowser for help on using the repository browser.