View Single Post
Old 04-11-2009, 11:42 PM   #49 (permalink)
ETbyrne
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

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(); 
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote