module.config.php #1

  • //
  • guest/
  • thomas_gray/
  • jambox/
  • main/
  • swarm/
  • module/
  • Projects/
  • config/
  • module.config.php
  • View
  • Commits
  • Open Download .zip Download (8 KB)
<?php
/**
 * Perforce Swarm
 *
 * @copyright   2012 Perforce Software. All rights reserved.
 * @license     Please see LICENSE.txt in top-level folder of this distribution.
 * @version     <release>/<patch>
 */

return array(
    'projects' => array(
        'mainlines'                => array('main', 'mainline', 'master', 'trunk'),  // common mainline branch ids
        'edit_name_admin_only'     => false,    // if enabled only admin users can edit project name
        'edit_branches_admin_only' => false,    // if enabled only admin users can add/edit/remove project branches
    ),
    'security' => array(
        'add_project_admin_only' => false,      // if enabled only admin users can create projects
        'add_project_groups'     => array(),    // if set, only members of given groups can create projects
    ),
    'router' => array(
        'routes' => array(
            'project' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project[s]/:project[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'project'
                    ),
                ),
            ),
            'add-project' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project[s]/add[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'add',
                    ),
                ),
            ),
            'edit-project' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project[s]/edit/:project[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'edit'
                    ),
                ),
            ),
            'delete-project' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project[s]/delete/:project[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'delete'
                    ),
                ),
            ),
            'confirm-delete' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project[s]/confirm/:project/:token[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'confirm',
                        'token'      => null
                    ),
                ),
            ),
            'project-reviews' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project[s]/:project/reviews[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'reviews'
                    ),
                ),
            ),
            'project-jobs' => array(
                'type' => 'Application\Router\Regex',
                'options' => array(
                    'regex'    => '/projects?/(?P<project>.+)/jobs?(/(?P<job>.*))?',
                    'spec'     => '/projects/%project%/jobs/%job%',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'jobs',
                        'job'        => null
                    ),
                ),
            ),
            'project-browse' => array(
                'type' => 'Application\Router\Regex',
                'options' => array(
                    'regex'    => '/projects?/(?P<project>[^/]+)/'
                        . '(?P<mode>(files|view|download|changes|archive))(/(?P<path>.*))?',
                    'spec'     => '/projects/%project%/%mode%/%path%',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'browse',
                        'path'       => null
                    ),
                ),
            ),
            'project-archive' => array(
                'type' => 'Application\Router\Regex',
                'options' => array(
                    'regex'    => '/projects?/(?P<project>[^/]+)/archives?/(?P<path>.+)\.zip',
                    'spec'     => '/projects/%project%/archives/%path%.zip',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'archive'
                    ),
                ),
            ),
            'projects' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/projects[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'projects'
                    ),
                ),
            ),
            'previewId' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/project/preview/[:name]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'previewId',
                        'name'       => null
                    ),
                ),
            ),
            'join' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/join/:id[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'join',
                        'id'         => null
                    ),
                ),
            ),
            'leave' => array(
                'type' => 'Zend\Mvc\Router\Http\Segment',
                'options' => array(
                    'route'    => '/leave/:id[/]',
                    'defaults' => array(
                        'controller' => 'Projects\Controller\Index',
                        'action'     => 'leave',
                        'id'         => null
                    ),
                ),
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Projects\Controller\Index' => 'Projects\Controller\IndexController'
        ),
    ),
    'view_manager' => array(
        'template_map' => array(
            'projects/index/project'    => __DIR__ . '/../view/projects/index/project.phtml',
            'projects/index/add'        => __DIR__ . '/../view/projects/index/add.phtml',
        ),
        'template_path_stack'   => array(
            __DIR__ . '/../view',
        ),
    ),
    'view_helpers' => array(
        'invokables' => array(
            'projectList'     => 'Projects\View\Helper\ProjectList',
            'projectToolbar'  => 'Projects\View\Helper\ProjectToolbar',
            'projectSidebar'  => 'Projects\View\Helper\ProjectSidebar',
            'projectsSidebar' => 'Projects\View\Helper\ProjectsSidebar'
        ),
    ),
    'input_filters' => array(
        'factories'  => array(
            'project_filter'  => function ($manager) {
                $services = $manager->getServiceLocator();
                return new \Projects\Filter\Project($services->get('p4_admin'));
            },
        ),
    ),
);
# Change User Description Committed
#1 18334 Liz Lam initial add of jambox