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-05-25 21:11:35Damodar Bashyal
Codefight cms is built with the help of codeigniter cms. Last weekend i wrote a multi-level menu library. You can use it for codefight cms or wherever you want.
This may not be perfect but it works. If you have a better idea i would like to know. This is how it looks like.
More»
2009-04-10 22:58:40Damodar Bashyal
How to load a codefight cms block in certain area?
Since i started to code my cms, i have learnt new things and ideas. My latest addition is blocks. I have created blocks of different parts, or say features. This one is currently working for template view files. Because of this, its quite easy to build a new theme for codefight cms.
If you check the file tree image you will get some idea. Or, for more detail you can download the cms. This is how blocks are loaded in the area you want:
CODE:
1-<?php$this->blocks->load('block_name'); ?>
or, you can even load a different blocks with one call using array as:
More»