summaryrefslogtreecommitdiff
path: root/app/frontend/components/FileUploadSecureOption.php
blob: ae7972001805e552f2aad160b42cb1bd4909f759 (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 = TPropertyValue::ensureBoolean($bool);
    }

}

?>