Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • zf-3.x
  • origin/trunk
  • 3.0.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
9 results

module.config.php

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    module.config.php 830 B
    <?php
    namespace UnicaenKsup;
    
    return [
        'unicaen-ksup' => [
            'sso_url_server'  => 'http://www.unicaen.fr',
            'sso_host_server' => 'www.unicaen.fr',
            'sso_port_server' => '80',
        ],
    
        'view_manager' => [
    
            // TemplateMapResolver configuration
            // template/path pairs
            'template_map'        => [
                'layout/ksup' => __DIR__ . '/../view/layout/ksup.phtml',
            ],
            // TemplatePathStack configuration
            'template_path_stack' => [
                'ksup' => __DIR__ . '/../view',
            ],
            // Layout template name
            'layout'              => 'layout/layout', // e.g., 'layout/layout'
            // Additional strategies to attach
            'strategies'          => [
                //'ViewKsupStrategy', // register JSON renderer strategy
            ],
        ],
    ];