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); } } ?>