Skip to content

Instantly share code, notes, and snippets.

@lukemorton
Created February 23, 2011 22:41
Show Gist options
  • Save lukemorton/841351 to your computer and use it in GitHub Desktop.
Save lukemorton/841351 to your computer and use it in GitHub Desktop.
Example CMS controller
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_CMS extends Controller {
public function action_page()
{
$page = $this->request->param('id', 'home');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment