// controller/posts.php
...
public function action_show()
{
$this->template->content = ViewModel::forge('posts/show');
}
...
// view/posts/show.php
...
public function view()
{
$this->post = Model_Post::find(x);
}
...
// controller/posts.php
...
public function action_show($id)
{
$this->template->content = ViewModel::forge('posts/show');
$this->template->content->post_id = $id;
}
// view/posts/show.php
...
public function view()
{
$this->post = Model_Post::find($this->post_id);
}
It looks like you're new here. If you want to get involved, click one of these buttons!