Using LESS in CakePHP

Posted September 10th, 2011 • 2 min read

I was a bit bored this morning with my previous Less component, so decided to rewrite the thing and added some new features such as caching. It's pretty straightforward and simple to set up. If you can't wait, the code is available here. For more information, read on.

This little helper converts your .less files into .css without relying on Node.js

Installation

Clone

Clone from github: in your plugin directory type:

$ git clone https://github.com/Hyra/less.git less

Submodule

Add as Git submodule: in your plugin directory type:

$ git submodule add https://github.com/Hyra/less.git less

Manual

Download as archive from github and extract to app/plugins/less

Next, create a folder less in app/webroot/ and apply chmod 777 to it.

Usage

In your app_controller.php add the helper:

public $helpers = array('Less.Less');

Now every .less file from webroot/less will be converted to its .css equivalent in webroot/css

In your default.ctp layout you can just use echo $this->Html->css('your_css_file'); as you always do

Features

Again, it's not much .. but I like simple things that make working on projects more fun, so it's all good.

I probably should update the helper again soon to make it work with CakePHP 2.0, but haven't decided when to make the switch yet. Then again, you guys can always fork and help out, of course ;)

Stay up to date

Want to know when a new post comes out and stay in the loop on tips, tricks and gotchas? Consider signing up for the Mindthecode newsletter.

Comments

Keep reading

September 26th, 2017 • 15 min read
I always wanted to toy around with an image recognition library but it always felt kinda daunting. Today we'll explore this together to detect license plates.
December 6th, 2011 • 2 min read
Loading external assets with curl is not only easy, it's also a lot faster than file_get_contents
December 8th, 2013 • 1 min read
My experience while rebuilding this blog with CabinJS and Grunt