Ability to customize filenames, replacing the standard UNIX timestamp + random

This commit is contained in:
Savetheinternet 2011-11-19 00:22:48 +11:00
parent f25365dec5
commit 0279cfd3fb
2 changed files with 9 additions and 2 deletions

View File

@ -353,6 +353,10 @@
// $config['allowed_ext_files'][] = 'txt';
// $config['allowed_ext_files'][] = 'zip';
// An alternative function for generating a filename, instead of the default UNIX timestamp with appended random digits
// http://tinyboard.org/wiki/index.php?title=Filenames
// $config['filename_func'] = 'some_function_you_have_created';
// Non-image file icons
$config['file_icons']['default'] = 'file.png';
$config['file_icons']['zip'] = 'zip.png';

View File

@ -311,6 +311,9 @@
if($post['has_file']) {
$post['extension'] = strtolower(substr($post['filename'], strrpos($post['filename'], '.') + 1));
if(isset($config['filename_func']))
$post['file_id'] = $config['filename_func']($post);
else
$post['file_id'] = time() . rand(100, 999);
$post['file'] = $board['dir'] . $config['dir']['img'] . $post['file_id'] . '.' . $post['extension'];
$post['thumb'] = $board['dir'] . $config['dir']['thumb'] . $post['file_id'] . '.' . ($config['thumb_ext'] ? $config['thumb_ext'] : $post['extension']);