zentaopms/module/file/config.php
2023-05-16 10:47:08 +08:00

19 lines
743 B
PHP

<?php
$config->file->mimes['xml'] = 'text/xml';
$config->file->mimes['html'] = 'text/html';
$config->file->mimes['csv'] = 'text/csv';
$config->file->mimes['default'] = 'application/octet-stream';
$config->file->imageExtensions = array('jpeg', 'jpg', 'gif', 'png');
$config->file->image2Compress = array('.jpg', '.bmp', '.jpeg');
$config->file->charset = array('UTF-8' => 'UTF-8', 'GBK' => 'GBK', 'BIG5' => 'BIG5');
$config->file->maxImport = 100;
$config->file->objectType['stepResult'] = 'testcase';
$config->file->objectType['requirement'] = 'story';
$config->file->convertURL['common']['view'] = '1';
$config->file->convertURL['story']['edit'] = '1';
$config->file->convertURL['testsuite']['libview'] = '1';