Skip to content

Instantly share code, notes, and snippets.

@jawngee
Created July 15, 2009 09:08
Show Gist options
  • Save jawngee/147600 to your computer and use it in GitHub Desktop.
Save jawngee/147600 to your computer and use it in GitHub Desktop.
<?
class PostController extends Controller
{
/**
* [[
* view: 'post/edit'
* ]]
*/
public function create()
{
return array(
'post' => Model::Instance('blog.post'),
'mode' => 'create'
);
}
public function edit($post_id)
{
// insert code here
return array(
'post' => $post,
'mode' => 'edit'
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment