source: trunk/services/css.php @ 1

Last change on this file since 1 was 1, checked in by scdev, 19 years ago

Initial import.

File size: 434 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();
15    $css->output();
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.