blob: bcdaccc5bdab01dc947c7f4af7da107a4e434fa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
// URL of kolab-chwala installation
\$config['kolab_files_url'] = '/chwala/';
// List of files list columns. Available are: name, size, mtime, type
\$config['kolab_files_list_cols'] = array('name', 'mtime', 'size');
// Name of the column to sort files list by
\$config['kolab_files_sort_col'] = 'name';
// Order of the files list sort
\$config['kolab_files_sort_order'] = 'asc';
?>
|