diff options
author | emkael <emkael@tlen.pl> | 2016-04-06 13:50:31 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-04-06 13:51:23 +0200 |
commit | dfe234a7aaaacedcc94716f955b44a1b50c4a057 (patch) | |
tree | 3c16b945b65a654d6dd63421250fb2bb496cd1f2 /app/php/components/SafeFileUpload.php | |
parent | fd7b7aa1bade514a87667ff90b94dc3050f68560 (diff) |
* components -> controls
Diffstat (limited to 'app/php/components/SafeFileUpload.php')
-rw-r--r-- | app/php/components/SafeFileUpload.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/app/php/components/SafeFileUpload.php b/app/php/components/SafeFileUpload.php deleted file mode 100644 index 98e120a..0000000 --- a/app/php/components/SafeFileUpload.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -class SafeFileUpload extends TFileUpload { - - use MimeTypeCheckForFileUpload; - -} - -trait MimeTypeCheckForFileUpload { - - protected $_isSecure = TRUE; - - public function getIsSecure() { - return $this->_isSecure; - } - - public function setIsSecure($bool) { - $this->_isSecure = $bool; - } - - public function getFileType() { - $type = parent::getFileType(); - if ($this->getIsSecure()) { - $fileInfo = new finfo(FILEINFO_MIME_TYPE); - return $fileInfo->file($this->getLocalName()); - } - else { - return $type; - } - } - -} - -?> |