clooder / cakeless
Cakephp Less
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 17
Type:cakephp-plugin
Requires
- php: >=5.3.0
- composer/installers: *
- leafo/lessphp: 0.4.x@dev
This package is auto-updated.
Last update: 2024-11-10 00:23:47 UTC
README
This little Helper converts your .less files into .css without relying on Node.js or client-side parsing. Everything is compiled on the server, cached, and served as regular css through PHP.
Installation
Git clone
In your plugin directory type
git clone https://github.com/Hyra/less.git Less
Composer
In your root cakephp
"require" : {
"clooder/cakeless": "dev-master"
}
composer install
Create cache and less folders
- Create a folder called
less
inapp/webroot/
- Create a folder called
less
inapp/tmp/cache
- Apply
chmod 777
to yourcss
folder. (The Less Helper will place all compiled css files in your css-directory)
Usage
Where you want to use LESS files, add the helper. Usually this will be your AppController
.
public $helpers = array('Less.Less');
Next, simply add the less files to your views:
echo $this->Less->css('yourfile');
or if the less file is located in the webroot of a plugin
echo $this->Less->css('yourfile',array('plugin' => 'PluginFolderName'));
or
echo $this->Less->css(array(
'bootstrap/bootstrap',
'prettify',
)
);
It doesn't matter if you link to stolen .css files directly, the Helper will check for the existance of a .less version first, and fall back if it doesn't find one.
If it does find a corresponding .less file with the same name in your less directory, it will compile it to css and place it in your css directory