The UFactory::getModuleAlias() method in Uniprogy Yii is a non-static method and should not be called statically.
If you call this method statically, you will get an error like this:
Fatal error: Call to a non-static member function getModuleAlias() of class Uniprogy_Controller_Action_Helper_HelperAbstract
To fix this error, you need to call the method as a non-static method. You can do this by creating an instance of the class and then calling the method on that instance.
For example:
$helper = new Uniprogy_Controller_Action_Helper_HelperAbstract();
$moduleAlias = $helper->getModuleAlias();
Alternatively, you can call the method by using the $this keyword.
For example:
$moduleAlias = $this->getModuleAlias();