开发者

Autoloading modularity/widgets in PHP, CodeIgniter/Kohana

I was looking on many template libraries, som I have fair mess in general idea what is out there ready to download/use and what I want to use, so maybe you could help me with this.

I'm currently learning CodeIgniter, thinking about moving to Kohana later. I would like to include controllers/modules(/module function maybe?) based on needs of template/site.

Example, so you would understand: I have xml-defined page saved in mysql, which states, that in

<div id="sidebar">, i want to use news panel/widget - something like:

<div id="sidebar">{widget:news;3;60}</div>.

I'm looking for template parser and/or way to do it, so in main application I load page, then template. then I look up what modules/widgets page/template use and load them dynamically, pass them parameters (in example news;3;60 - module news, 3 last, 60 characters limit each), and echo their result in place of where i called them.

The usage for this should be understandable - if I use news module on 27 pages, just somewhere with last 3 news, somewhere last month, etc开发者_如何学Python., i want to include it simply and edit it on one place.

Other problems in my mind are: I'm thinking that it would be best to have all modules at one time (not load them one there, one here), so I can access database on one place, etc.

I'm kind of lost and maybe someone will have some idea for me :)


The two best ways to do this are:

  1. Use my CodeIgniter Dwoo implementation and build plugins
  2. Use wiredesignz' Widget plugin

You could of course use Smarty plugins but yuck, who still uses Smarty?

Remember when creating Dwoo plugins that the CodeIgniter instance is available to any PHP loaded in on that request, so wether its Dwoo plugins, modifiers, blocks, etc you can always use:

$CI =& get_instance();
$CI->load->model('something');
//etc


If you're using Kohana3, you could use the HMVC-capabilities. A quick way would be to create a helper-class that you can use in your views. In your view you then make a call to this helper. This helper would start a new request that would trigger the correct controller/action.

There is some kind of widget-class in the Kohana-forums, but that requires a class for the widget instead of utilizing the (already existing?) controllers via the HMVC-capabilities of Kohana3.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜