Format config files

This commit is contained in:
Eike Foken
2011-09-01 19:59:58 +02:00
parent d9d8feabfb
commit 82b13d758d
15 changed files with 599 additions and 598 deletions

View File

@@ -1,10 +1,10 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Data Mapper Configuration
*
* Global configuration settings that apply to all DataMapped models.
*/
<?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'] = '';
@@ -12,11 +12,11 @@ $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;
$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 */
/* Location: ./application/config/datamapper.php */