Source for file compressed.php

Documentation is available at compressed.php

  1. <?php
  2. /**
  3.  * @package     FrameworkOnFramework
  4.  * @subpackage  less
  5.  * @copyright   Copyright (C) 2010 - 2012 Akeeba Ltd. All rights reserved.
  6.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  7.  */
  8. // Protect from unauthorized access
  9. defined('_JEXEC'or die;
  10.  
  11. /**
  12.  * This class is taken verbatim from:
  13.  *
  14.  * lessphp v0.3.8
  15.  * http://leafo.net/lessphp
  16.  *
  17.  * LESS css compiler, adapted from http://lesscss.org
  18.  *
  19.  * Copyright 2012, Leaf Corcoran <leafot@gmail.com>
  20.  * Licensed under MIT or GPLv3, see LICENSE
  21.  *
  22.  * @package  FrameworkOnFramework
  23.  * @since    2.0
  24.  */
  25. {
  26.     public $disableSingle = true;
  27.  
  28.     public $open = "{";
  29.  
  30.     public $selectorSeparator = ",";
  31.  
  32.     public $assignSeparator = ":";
  33.  
  34.     public $break = "";
  35.  
  36.     public $compressColors = true;
  37.  
  38.     /**
  39.      * Indent a string by $n positions
  40.      *
  41.      * @param   integer  $n  How many positions to indent
  42.      *
  43.      * @return  string  The indented string
  44.      */
  45.     public function indentStr($n 0)
  46.     {
  47.         return "";
  48.     }
  49. }

Documentation generated on Tue, 19 Nov 2013 14:56:26 +0100 by phpDocumentor 1.4.3