23 lines
805 B
PHP
23 lines
805 B
PHP
<?php defined('BASEPATH') || exit('No direct script access allowed');
|
|
/*
|
|
| -------------------------------------------------------------------
|
|
| DATAMAPPER CONFIGURATION
|
|
| -------------------------------------------------------------------
|
|
| Global configuration settings that apply to all DataMapped models.
|
|
*/
|
|
|
|
$config['prefix'] = '';
|
|
$config['join_prefix'] = '';
|
|
$config['error_prefix'] = '<p>';
|
|
$config['error_suffix'] = '</p>';
|
|
$config['created_field'] = 'created';
|
|
$config['updated_field'] = 'updated';
|
|
$config['local_time'] = false;
|
|
$config['unix_timestamp'] = false;
|
|
$config['auto_transaction'] = false;
|
|
$config['auto_populate_has_many'] = false;
|
|
$config['auto_populate_has_one'] = false;
|
|
|
|
/* End of file datamapper.php */
|
|
/* Location: ./application/config/datamapper.php */
|