mirror of
https://github.com/YunoHost-Apps/mytinytodo_ynh.git
synced 2024-09-03 19:46:01 +02:00
27 lines
735 B
PHP
27 lines
735 B
PHP
|
<?php
|
||
|
$config = array();
|
||
|
$config['db'] = 'mysql';
|
||
|
$config['mysql.host'] = '__TODO_HOST__';
|
||
|
$config['mysql.db'] = '__TODO_DB__';
|
||
|
$config['mysql.user'] = '__TODO_USER__';
|
||
|
$config['mysql.password'] = '__TODO_PASSWORD__';
|
||
|
$config['prefix'] = 'mtt_';
|
||
|
$config['url'] = '';
|
||
|
$config['mtt_url'] = '';
|
||
|
$config['title'] = '';
|
||
|
$config['lang'] = '__TODO_LANG__';
|
||
|
$config['password'] = '';
|
||
|
$config['smartsyntax'] = 1;
|
||
|
$config['timezone'] = 'UTC';
|
||
|
$config['autotag'] = 1;
|
||
|
$config['duedateformat'] = 1;
|
||
|
$config['firstdayofweek'] = 1;
|
||
|
$config['session'] = 'files';
|
||
|
$config['clock'] = 24;
|
||
|
$config['dateformat'] = 'j M Y';
|
||
|
$config['dateformat2'] = 'n/j/y';
|
||
|
$config['dateformatshort'] = 'j M';
|
||
|
$config['template'] = 'default';
|
||
|
$config['showdate'] = 0;
|
||
|
?>
|