Skip to content
Snippets Groups Projects
Select Git revision
  • d3e25d39d764a0804d289187c819b8c74ea4ba49
  • master default
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.1
  • v2014.0
  • v2013.0
10 results

Makefile

Blame
  • 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'); }