Skip to content

Instantly share code, notes, and snippets.

@kalebweb
Created October 27, 2013 01:21
Show Gist options
  • Save kalebweb/7176829 to your computer and use it in GitHub Desktop.
Save kalebweb/7176829 to your computer and use it in GitHub Desktop.
Controller Base CakePHP
<?php
class SinglesController extends AppController {
var $name = "Singles";
function index(){
$this->set('singles', $this->Single->find('all'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment