Code: Select all
function IsPluginModule()
{
return true;
}
function HasAdmin()
{
return true;
}
Code: Select all
function IsPluginModule()
{
return true;
}
function HasAdmin()
{
return true;
}
I don't think i'm overriding this method. It does't exist in my module.calguy1000 wrote: Created parameters are displayed in the About stuff, which is called from GetAbout()
If you are overriding the GetAbout() method, you need to be sure to call the parent classes method.
i.e: parent::GetAbout();
Normally, we don't override this method.
Code: Select all
function GetHelp()
{
return $this->Lang('help');
}
Yes the help section is working but not the parametersJos wrote: Do you have the help section of your module working and is it just that it don't show the parameters, or don't you have a help at all.
Code: Select all
class ModuleName extends CMSModule
{
function ModuleName()
{
do something;
}
Code: Select all
class ModuleName extends CMSModule
{
function __construct()
{
do something;
}