Select Git revision
Forked from
Anders Blomdell / LabComm
Source project has a limited visibility.
ReglerAddress.module.php 5.66 KiB
<?php
#-------------------------------------------------------------------------
# Module: ReglerAddress - Module for manaiging the control.lth.se
# address database
#
#-------------------------------------------------------------------------
/**
* Your initial Class declaration. This file's name must
* be "[class's name].module.php", or, in this case,
* ReglerAddress.module.php
*/
/**
* ReglerAddress class
*
* @author Leif Andersson
* @since 1.0
* @version 2015-09-02
* @modifiedby $LastChangedBy: LA $
* @lastmodified $Date: 2015-09-02$
* @license GPL
**/
class ReglerAddress extends CMSModule
{
/**
* GetName()
* return get_class($this);
* @return string class name
*/
function GetName() { return get_class($this); }
/**
* GetFriendlyName()
* @return string Friendly name for the module
*/
function GetFriendlyName() { return 'ReglerAddress'; }
/**
* GetVersion()
* @return string version number (can be something like 1.4rc1)
*/
function GetVersion() { return '2015-09-02'; }
/**
* GetHelp()
* @return string Help for this module
*/
function GetHelp() { return 'help'; }
/**
* GetAuthor()
* @return string Author name
*/
function GetAuthor() { return 'Leif Andersson'; }
/**
* GetAuthorEmail()
* @return string Authors email
*/
function GetAuthorEmail() {return 'leif.andersson@control.lth.se'; }
/**
* GetChangeLog()
* @return string ChangeLog for this module
*/
function GetChangeLog() { return $this->Lang('changelog'); }