PHP Classes

File: config/jaxon.config.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon for Zend Framework   config/jaxon.config.php   Download  
File: config/jaxon.config.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Jaxon for Zend Framework
Zend plugin to call PHP classes from with AJAX
Author: By
Last change: Changed the app config.
Renamed the js.app.extern option to js.app.export.
Date: 2 years ago
Size: 1,020 bytes
 

Contents

Class file image Download
<?php

return [
   
'app' => [
       
'directories' => [
           
rtrim(getcwd(), '/') . '/jaxon/Classes' => [
               
'namespace' => '\\Jaxon\\App',
               
// 'separator' => '', // '.' or '_'
                // 'protected' => [],
           
],
        ],
    ],
   
'lib' => [
       
'core' => [
           
'language' => 'en',
           
'encoding' => 'UTF-8',
           
'request' => [
               
'uri' => '/jaxon',
            ],
           
'prefix' => [
               
'class' => '',
            ],
           
'debug' => [
               
'on' => false,
               
'verbose' => false,
            ],
           
'error' => [
               
'handle' => false,
            ],
        ],
       
'js' => [
           
'lib' => [
               
// 'uri' => '/jaxon/lib',
           
],
           
'app' => [
               
// 'uri' => '',
                // 'dir' => '',
               
'export' => false,
               
'minify' => false,
            ],
        ],
    ],
];