Widget path problems

This line of code in my layout

$this->widget(‘hawkwebapp.protected.extensions.widgets.Favorites.Favorites’);

throws this error message

Alias "hawkwebapp.protected.extensions.widgets.Favorites.Favorites" is invalid. Make sure it points to an existing directory or file.

This path exists in my directory. I am running MAMP. The actual path is

//Applications/MAMP/htdocs/hawkwebapp/protected/extensions/widgets/Favorites/Favorites.php

What am I doing wrong?

Thanks,

Alex

Hi! i think try this:

$this->widget(‘application.extensions.widgets.Favorites.Favorites’);

or shorter:




$this->widget('ext.widgets.Favorites.Favorites');



Thanks guys. That fixed it. Now on to the next thing.