/app/controllers/home_controller.php
https://github.com/hardsshah/bookmarks · PHP · 10 lines · 9 code · 1 blank · 0 comment · 0 complexity · 518c34ecb235041929d7828e1199a89a MD5 · raw file
- <?php
- class HomeController extends AppController{
- var $name ='Home';
- var $uses = array('LinkCategory', 'Link');
- function index(){
- $this->set('linkCategories', $this->LinkCategory->find('list'));
- $this->set('links', $this->Link->find('all'));
- }
- }