Call Model inside Modules

Hello I created a module that manages menus and pages (a small CMS) now in the front End I would like to retrieve data from the Database. For example I would like to retrieve the menu, but the model is inside / mymodules / model / menu

if I do


$items = Menu::model()->findAll();

I can not find.

How can I do?

Import your model before you call it.

Yii::import(‘path.to.your.model.from.your.module’);

thanks a lot!!

now works, very kind