PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
Framework
/
Asset
/
Css
/
Less
<?php namespace Nextend\Framework\Asset\Css\Less; use Nextend\Framework\Asset\AssetManager; use Nextend\Framework\Asset\Css\Css; class Less { public static function addFile($pathToFile, $group, $context = array(), $importDir = null) { AssetManager::$less->addFile(array( 'file' => $pathToFile, 'context' => $context, 'importDir' => $importDir ), $group); } public static function build() { foreach (AssetManager::$less->getFiles() as $group => $file) { if (substr($file, 0, 2) == '//') { Css::addUrl($file); } else if (!realpath($file)) { // For database cache the $file contains the content of the generated CSS file Css::addCode($file, $group, true); } else { Css::addFile($file, $group); } } } }
[-] Less.php
[edit]
[-] LessCompiler.php
[edit]
[+]
..
[-] Asset.php
[edit]
[+]
Formatter
[-] LessParser.php
[edit]
[-] Cache.php
[edit]