module.config.php #1

  • //
  • guest/
  • thomas_gray/
  • jambox/
  • main/
  • swarm/
  • module/
  • Highscore/
  • config/
  • module.config.php
  • View
  • Commits
  • Open Download .zip Download (1 KB)
<?php
/**
 * Perforce Swarm
 *
 * @copyright   2013 Perforce Software. All rights reserved.
 * @license     Please see LICENSE.txt in top-level folder of this distribution.
 * @version     <release>/<patch>
 */
 
return array(
    'router' => array(
        'routes' => array(
            'highscore' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/highscore[/]',
                    'defaults' => array(
                        'controller' => 'Teampage\Controller\Index',
                        'action'     => 'highscore',
                    ),
                ),
            )
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Teampage\Controller\Index' => 'Teampage\Controller\IndexController'
        ),
    ),
    'view_manager' => array(
        'template_map' => array(
            'highscore/index/index'  => __DIR__ . '/../view/highscore/index/highscore.phtml',
        ),
        'template_path_stack'   => array(
            __DIR__ . '/../view',
        ),
    ),
);
# Change User Description Committed
#1 18334 Liz Lam initial add of jambox