CodeIgniter Forums
A View Library: View Management, Hooks and Partial View Caching - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: A View Library: View Management, Hooks and Partial View Caching (/showthread.php?tid=30432)



A View Library: View Management, Hooks and Partial View Caching - El Forum - 05-14-2010

[eluser]Braden Schaeffer[/eluser]
Yep, it's another view management library... but this one includes partial caching methods I haven't seen before.

I was working on a project that had to serve dynamic headers and footers, meaning users who were logged in got a different header than users who weren't. On top of that, I wanted to be able to have as few view files as necessary while still serving page specific css and javascript files. And on top of that, I wanted to be able to cache portions of these views because caching the entire thing would eliminate my use of different headers for different users.

So that's why I made the View Library.

There's some pretty nice documentation over at bitbucket that explains it better, and if you have any questions, you can email me if you want. My address is on my website.

It works fine for now, but there are some things I would like to add (like asset groups and the like) and would welcome anyone interested in working on the project with me.

Let me know what you think.