__Module
public abstract class __Module
Method Summary | |
---|---|
void | Returns links to add to main menu. |
void | Returns links to add to page menu. |
void | afterParse(mixed input) Method is called after text is parsed. |
void | beforeParse(mixed input) Method is called before text is parsed. |
void | Returns a description of the module. |
void | Returns a detail page for the module. |
abstract void | getName() Returns the module name. |
void | Returns the module's parse mode. |
abstract void | Returns the module version. |
void | parse(mixed input) Method is called when text is parsed. |
void | parseLink(mixed input) Method is called when parsing links. |
void | run() Adequately reacts to a module query. |
public void addToMainMenu()
Returns links to add to main menu. @return Main menu links.
public void addToPageMenu()
Returns links to add to page menu. @return Main menu links.
public void afterParse(mixed input)
Method is called after text is parsed. @param $input Unparsed text. @return Parsed text.
public void beforeParse(mixed input)
Method is called before text is parsed. @param $input Unparsed text. @return Parsed text.
public void getDescription()
Returns a description of the module. @return Module description.
public void getDetails()
Returns a detail page for the module. @return Module detail page.
public abstract void getName()
Returns the module name. @return Module name.
public void getParseMode()
Returns the module's parse mode. @return Parse mode.
public abstract void getVersion()
Returns the module version. @return Module name.
public void parse(mixed input)
Method is called when text is parsed. @param $input Unparsed text. @return Parsed text.
public void parseLink(mixed input)
Method is called when parsing links. @param $input Unparsed text. @return Parsed text.
public void run()
Adequately reacts to a module query. @return TRUE when module processes the query, otherwise FALSE.
This is the base class for extension modules.