Skip to content

Instantly share code, notes, and snippets.

@jackfruh
Created December 29, 2014 03:05
Show Gist options
  • Save jackfruh/e875b04a8719be849a05 to your computer and use it in GitHub Desktop.
Save jackfruh/e875b04a8719be849a05 to your computer and use it in GitHub Desktop.
public function index() {
$this->set('submissions', $this->paginate($this->Submissions));
}
public function SendEmailAcceptance() {
$this->loadmodel("submissions");
$this->set('title', 'Send Email Confirmation');
$this->set('submissions', $this->paginate($this->Submissions));
$this->layout = 'defaultadmin';
// $this->autoRender = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment