Reputation: 1662
Is there any way to find page by id in layout file. I'm currently using
$this->fuel->pages->find(5)
But its not working. I'm getting following error message
Plugin module can not be found, maybe you forgot to bind it if it's a custom plugin ?
Upvotes: 1
Views: 94
Reputation: 182
You have to use an array to pass parameters in the method and you can use the find_one
.
$this->fuel->pages->find_one(array('where' => array('id' => 5)))
Upvotes: 0