├── data └── .gitkeep ├── db └── .gitkeep ├── logs └── .gitkeep ├── image └── cover.png ├── docker ├── php │ └── php.ini └── Dockerfile ├── app ├── views │ ├── error.php │ ├── header.php │ ├── footer.php │ └── index.php ├── models │ ├── index.php │ └── init.php └── api │ ├── verifydelete.php │ ├── verifydownload.php │ └── upload.php ├── cspell.json ├── .markdownlint.json ├── .config └── dictionary.txt ├── phpstan.neon ├── aqua.yaml ├── docker-compose.yaml ├── .gitignore ├── github-comment.yaml ├── scripts ├── composer.sh ├── test-release.sh ├── release.bat ├── check-quality.bat ├── release.sh ├── test-version.php ├── check-quality.sh └── release.php ├── asset ├── js │ ├── modal.js │ ├── common.js │ └── file-manager.js └── css │ ├── responsive-extra.css │ ├── common.css │ ├── responsive.css │ └── file-manager.css ├── composer.json ├── MIT-LICENSE.txt ├── .github ├── pull_request_template.md ├── labeler.yaml ├── workflows │ ├── pull-request.yaml │ ├── wc-document-pull-request.yaml │ ├── labeler.yaml │ ├── release.yaml │ ├── wc-update-aqua-checksums.yaml │ ├── auto-rebase-renovate-prs.yaml │ └── wc-php-test.yaml └── ISSUE_TEMPLATE │ ├── feature_request.yml │ └── bug_report.yml ├── aqua-checksums.json ├── src └── Core │ ├── ResponseHandler.php │ ├── Logger.php │ └── SecurityUtils.php ├── renovate.json5 ├── CHANGELOG.md ├── config └── config.php.example ├── index.php ├── phpcs.xml ├── README.md ├── download.php └── delete.php /data/.gitkeep: -------------------------------------------------------------------------------- 1 | # This file keeps the logs directory in git 2 | -------------------------------------------------------------------------------- /db/.gitkeep: -------------------------------------------------------------------------------- 1 | # This file keeps the logs directory in git 2 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | # This file keeps the logs directory in git 2 | -------------------------------------------------------------------------------- /image/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimosyan/phpUploader/HEAD/image/cover.png -------------------------------------------------------------------------------- /docker/php/php.ini: -------------------------------------------------------------------------------- 1 | [Date] 2 | date.timezone = "Asia/Tokyo" 3 | [mbstring] 4 | mbstring.internal_encoding = "UTF-8" 5 | mbstring.language = "Japanese" 6 | -------------------------------------------------------------------------------- /app/views/error.php: -------------------------------------------------------------------------------- 1 | 2 |
' . $errorMessage . '
'; 137 | echo ''; 138 | echo ''; 139 | } 140 | -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 |ファイルを登録
18 | 78 | 79 | 91 | 92 | 99 | 100 |@shimosyan/phpUploader v (GitHub)
132 |254 | ${this.escapeHtml(file.comment)} 255 |
256 | ` : ''} 257 |325 | ${this.escapeHtml(file.comment)} 326 |
327 | ` : ''} 328 |