/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

  1. <?php
  2. class HomeController extends AppController{
  3. var $name ='Home';
  4. var $uses = array('LinkCategory', 'Link');
  5. function index(){
  6. $this->set('linkCategories', $this->LinkCategory->find('list'));
  7. $this->set('links', $this->Link->find('all'));
  8. }
  9. }