PHP Classes

File: app/config/jaxon.php

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

Contents

Class file image Download
<?php

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