summaryrefslogtreecommitdiff
path: root/app/php/components/FileUploadSecureOption.php
blob: 3550e2198d6bcb0c83d540414d4f947c87759dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

trait FileUploadSecureOption {

    protected $_isSecure = TRUE;

    public function getIsSecure() {
        return $this->_isSecure;
    }

    public function setIsSecure($bool) {
        $this->_isSecure = $bool;
    }

}

?>