04-11-2009, 11:42 PM
|
#49 (permalink)
|
|
how quixotic are you?
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
|
Here are some ideas for the new syntax for using templates, please tell me which one(s) you like most.
Current One:
PHP Code:
// Set Template Group $this->dingo->set_template();
// Use Template $this->load->template();
Possibilities
1
PHP Code:
// Set Template Group $this->template->group();
// Use Template $this->template->load();
2
PHP Code:
// Set Template Group $this->template->group();
// Use Template $this->load->template();
3
PHP Code:
// Set Template Group $this->template->group();
// Use Template $this->template->use();
|
|
|
|