This commit is contained in:
2019-04-27 00:48:25 -07:00
parent 9884d19108
commit 756ea17f99
5 changed files with 263 additions and 67 deletions

View File

@@ -1,8 +1,19 @@
<?php
// Filetypes
// 0.7.10.3
//////////////////////////////////////////
$c_files = array( "txt",
"log",
"csv",
"webloc",
"svg",
"rtf",
"rtfd",
"doc",
"docx" );
$t_files['ffmpeg'] = array( "mkv",
"avi",
"mpeg",
@@ -26,7 +37,8 @@ $t_files['sips'] = array( "jpg",
"tiff",
"gif",
"psd",
"png" );
"png",
"heic" );
$m_files = array( "mkv",
"ogg",
@@ -71,6 +83,7 @@ $e_files = array( "ai",
"flac",
"flv",
"gif",
"heic",
"icc",
"iso",
"jpg",
@@ -122,6 +135,7 @@ $e_files = array( "ai",
"xmp",
"zip" );
foreach ($c_files as $ext) { $c_files[] = strtoupper($ext); }
foreach ($e_files as $ext) { $e_files[] = strtoupper($ext); }
foreach ($m_files as $ext) { $m_files[] = strtoupper($ext); }
foreach ($t_files['ffmpeg'] as $ext) { $t_files['ffmpeg'][] = strtoupper($ext); }