summaryrefslogtreecommitdiff
path: root/app/php/components/FileUploadSecureOption.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/components/FileUploadSecureOption.php')
-rw-r--r--app/php/components/FileUploadSecureOption.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/php/components/FileUploadSecureOption.php b/app/php/components/FileUploadSecureOption.php
deleted file mode 100644
index 3550e21..0000000
--- a/app/php/components/FileUploadSecureOption.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-trait FileUploadSecureOption {
-
- protected $_isSecure = TRUE;
-
- public function getIsSecure() {
- return $this->_isSecure;
- }
-
- public function setIsSecure($bool) {
- $this->_isSecure = $bool;
- }
-
-}
-
-?>