Update DataMapper even if it's not needed

This commit is contained in:
Karsten Heiken
2011-07-28 20:20:09 +02:00
parent 33853da2b1
commit adae20d957
4 changed files with 3380 additions and 6780 deletions

View File

@@ -1,33 +1,22 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Data Mapper 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['timestamp_format'] = '';
$config['lang_file_format'] = 'model_${model}';
$config['field_label_lang_format'] = '${model}_${field}';
$config['auto_transaction'] = FALSE;
$config['auto_populate_has_many'] = FALSE;
$config['auto_populate_has_one'] = FALSE;
$config['all_array_uses_ids'] = FALSE;
// set to FALSE to use the same DB instance across the board (breaks subqueries)
// Set to any acceptable parameters to $CI->database() to override the default.
$config['db_params'] = '';
// Uncomment to enable the production cache
// $config['production_cache'] = 'datamapper/cache';
$config['extensions_path'] = 'datamapper';
$config['extensions'] = array();
/* End of file datamapper.php */
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Data Mapper 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 */