| @@ 858-869 (lines=12) @@ | ||
| 855 | /** |
|
| 856 | * @brief Verify if nick name is denied |
|
| 857 | */ |
|
| 858 | function isDeniedNickName($nickName) |
|
| 859 | { |
|
| 860 | $args = new stdClass(); |
|
| 861 | $args->nick_name = $nickName; |
|
| 862 | $output = executeQuery('member.chkDeniedNickName', $args); |
|
| 863 | if($output->data->count) return true; |
|
| 864 | if(!$output->toBool()) |
|
| 865 | { |
|
| 866 | return true; |
|
| 867 | } |
|
| 868 | return false; |
|
| 869 | } |
|
| 870 | /** |
|
| 871 | * @brief Get information of the profile image |
|
| 872 | */ |
|
| @@ 219-228 (lines=10) @@ | ||
| 216 | * @param array trashSrls |
|
| 217 | * @return bool |
|
| 218 | */ |
|
| 219 | function _emptyTrash($trashSrls) |
|
| 220 | { |
|
| 221 | if(!is_array($trashSrls)) return false; |
|
| 222 | $args = new stdClass(); |
|
| 223 | $args->trashSrls = $trashSrls; |
|
| 224 | $output = executeQuery('trash.deleteTrash', $args); |
|
| 225 | if(!$output->toBool()) return false; |
|
| 226 | ||
| 227 | return true; |
|
| 228 | } |
|
| 229 | } |
|
| 230 | /* End of file trash.admin.controller.php */ |
|
| 231 | /* Location: ./modules/trash/trash.admin.controller.php */ |
|