KKK
KKK

Reputation: 1662

FuelCMS - How to find pages by id

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

Answers (1)

ateebahmed
ateebahmed

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

Related Questions