$namespace = \Request::active() ? ucfirst(\Request::active()->module) : ''; $class = $namespace.'\\View_'.ucfirst(str_replace(array('/', DS), '_', $viewmodel));The ViewModel docs says something about using ViewModels from other namespaces but it doesn't seem to work http://docs.fuelphp.com/general/viewmodels.html
Using ViewModels from other namespaces or not View_ prefixed If you want to use these, you have to use the full classname with the forge(), including the namespace.
Jelmer Schreuder wrote on Friday 13th of July 2012:This is how it actually searches for the class: https://github.com/fuel/core/blob/1.3/develop/classes/viewmodel.php#L33
It looks like you're new here. If you want to get involved, click one of these buttons!