| @@ 428-435 (lines=8) @@ | ||
| 425 | return gmdate("D, d M Y H:i:s", $this->getUpdateTime()); |
|
| 426 | } |
|
| 427 | ||
| 428 | function hasUploadedFiles() |
|
| 429 | { |
|
| 430 | if(($this->isSecret() && !$this->isAccessible()) && !$this->isGranted()) |
|
| 431 | { |
|
| 432 | return FALSE; |
|
| 433 | } |
|
| 434 | return $this->get('uploaded_count') ? TRUE : FALSE; |
|
| 435 | } |
|
| 436 | ||
| 437 | function getUploadedFiles() |
|
| 438 | { |
|
| @@ 1062-1068 (lines=7) @@ | ||
| 1059 | return implode('', $buff); |
|
| 1060 | } |
|
| 1061 | ||
| 1062 | function hasUploadedFiles() |
|
| 1063 | { |
|
| 1064 | if(!$this->document_srl) return; |
|
| 1065 | ||
| 1066 | if($this->isSecret() && !$this->isGranted()) return false; |
|
| 1067 | return $this->get('uploaded_count')? true : false; |
|
| 1068 | } |
|
| 1069 | ||
| 1070 | function getUploadedFiles($sortIndex = 'file_srl') |
|
| 1071 | { |
|