This repository has been archived on 2024-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Respawn/config.php

36 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/* The configuration generated with auto_form*/
$GLOBAL['data_folder'] = 'mypersonaldata';
$GLOBAL['default_data_folder'] = 'public';
$GLOBAL['rss_title'] = 'Respawn: le flux de la webliothèque';
$GLOBAL['rss_description'] = 'Le respawn de warriordudimanche.net';
$GLOBAL['message'] = 'Votre webliothèque perso';
$GLOBAL['public_title'] = 'Voici la webliothèque publique de Bronco';
$GLOBAL['skin'] = 'pinterest';
2014-08-22 14:32:29 +02:00
// File restriction
$GLOBAL['image'] = array(
'image/png' => 'png',
'image/jpg' => 'jpg',
'image/jpeg' => 'jpg',
'image/jpe' => 'jpg',
'image/gif' => 'gif',
'image/bmp' => 'bmp',
'image/tiff' => 'tiff'
);
$GLOBAL['document'] = array(
'application/vnd.oasis.opendocument.text' => 'odt',
'application/vnd.oasis.opendocument.spreadsheet' => 'ods',
'application/pdf' => 'pdf',
'application/msword' => 'doc',
'application/rtf' => 'rtf',
'application/vnd.ms-excel' => 'xls',
'application/vnd.ms-powerpoint' => 'ppt'
);
$GLOBAL['archive'] = array(
'application/zip' => 'zip',
'application/x-rar-compressed' => 'rar',
'application/x-msdownload' => 'exe',
'application/x-msdownload' => 'msi'
);
?>