source: trunk/services/css.php

Last change on this file was 695, checked in by anonymous, 5 years ago

Change usage of is_a($x, 'X') to $x instance of X

File size: 1.2 KB
RevLine 
[1]1<?php
2/**
[362]3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
[396]5 * Copyright 2001-2012 Strangecode, LLC
[469]6 *
[362]7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
[469]13 *
[362]14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
[469]18 *
[362]19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
[469]24 * css.php
[1]25 *
26 * This file works with the CSS.inc.php class to print a "normal" css file and
27 * is to be included as any css file would be. It should not be necessary to
28 * ever modify this file.
29 */
[695]30if ($css instanceof \CSS) {
[106]31    $css->headers(getFormData('app'));
32    $css->output(getFormData('app'));
[1]33}
34
Note: See TracBrowser for help on using the repository browser.