Module.php #1

  • //
  • guest/
  • perforce_software/
  • chronicle/
  • main/
  • sites/
  • all/
  • modules/
  • ide/
  • templates/
  • module/
  • Module.php
  • View
  • Commits
  • Open Download .zip Download (662 B)
<?php
/**
 * Integrate the {{package:label}} module with the rest of the application.
 *
 * @author      {{user:fullName}}
 * @version     1.0
 */
class {{package:namespace}}_Module extends P4Cms_Module_Integration
{
    /**
     * Perform early integration work (before load).
     */
    public static function init()
    {
        // connect to some event.
        //P4Cms_PubSub::subscribe('p4cms.some.event',
        //    function($arguments)
        //    {
        //        // participate.
        //    }
        //);
    }

    /**
     * Perform integration operations when the site is loaded.
     */
    public static function load()
    {
    }
}
# Change User Description Committed
#1 16170 perforce_software Move Chronicle files to follow new path scheme for branching.
//guest/perforce_software/chronicle/sites/all/modules/ide/templates/module/Module.php
#1 8972 Matt Attaway Initial add of the Chronicle source code