Inside my module (from within php code), say mod_mymodule, how can I retrieve my module's title, in case an administrator has changed it from the module management page?
Is it possible to retrieve the "Status" and "Position" the same way as the title?
Inside the module, there are two helpful variables available:
$module
and $params
.
You are looking for $module->title
.