2009-03-17 16:24:30Damodar Bashyal
Today I extended my Asset Manager to combine several css into one. As i understand, YSLOW Says there should be as less http requests as possible. So i decided to add this optional feature. For now this is controlled through MY_config file located at config folder.
This is how addition config setting looks:
More»
2009-03-13 16:52:28Damodar Bashyal
Today i wrote new asset manager for my cms by taking ideas from contributions on codeigniter. This is very useful for my cms. I am going to modify more in the future as i have time. But for now i would like to show how it works.
STEP 1:
I have a config file called MY_config. And, i autoload this config on config/autoload.php
CODE:
1-
2-<?php
3-$autoload['config'] = array('MY_config');
4-?>
5-
Also, i autoload my new library in this file, along with other libraries as:
More»