mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
28 lines
560 B
PHP
28 lines
560 B
PHP
<?php
|
|
/**
|
|
* TimeSheet - Default records
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Nathan Gray
|
|
* @package timesheet
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
*/
|
|
|
|
foreach(array(
|
|
'history' => 'history',
|
|
) as $name => $value)
|
|
{
|
|
$GLOBALS['egw_setup']->db->insert(
|
|
$GLOBALS['egw_setup']->config_table,
|
|
array(
|
|
'config_app' => 'timesheet',
|
|
'config_name' => $name,
|
|
'config_value' => $value,
|
|
),array(
|
|
'config_app' => 'timesheet',
|
|
'config_name' => $name,
|
|
),__LINE__,__FILE__
|
|
);
|
|
}
|
|
|