Module.php #1

  • //
  • guest/
  • thomas_gray/
  • jambox/
  • main/
  • swarm/
  • module/
  • Teampage/
  • Module.php
  • View
  • Commits
  • Open Download .zip Download (745 B)
<?php
/**
 * @copyright   2013 Perforce Software. All rights reserved.
 * @license     Please see LICENSE in top-level folder of this distribution.
 */
 
namespace Teampage;
 
/**
 * This modules shows an example of how to add your own retro-style high score page.
 * Scores are number of changelists submitted by the user.
 *
 */
 
class Module
{
    public function getConfig()
    {
        return include __DIR__ . '/config/module.config.php';
    }
 
    public function getAutoloaderConfig()
    {
        return array(
            'Zend\Loader\StandardAutoloader' => array(
                'namespaces' => array(
                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
                ),
            ),
        );
    }
}
# Change User Description Committed
#1 18334 Liz Lam initial add of jambox