mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
29 lines
577 B
PHP
29 lines
577 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
|
|
* @version $Id$
|
|
*/
|
|
|
|
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__
|
|
);
|
|
}
|
|
|