├── app ├── Filters │ └── .gitkeep ├── Helpers │ └── .gitkeep ├── Language │ ├── .gitkeep │ └── en │ │ └── Validation.php ├── Libraries │ └── .gitkeep ├── Models │ ├── .gitkeep │ └── UserModel.php ├── ThirdParty │ └── .gitkeep ├── Database │ ├── Seeds │ │ └── .gitkeep │ └── Migrations │ │ └── .gitkeep ├── Views │ ├── about.php │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── production.php │ │ │ └── error_exception.php │ │ └── html │ │ │ ├── production.php │ │ │ ├── error_404.php │ │ │ ├── debug.js │ │ │ ├── debug.css │ │ │ └── error_exception.php │ ├── home.php │ ├── dashboard │ │ └── index.php │ ├── form │ │ ├── register.php │ │ └── login.php │ └── templates │ │ ├── header.php │ │ └── footer.php ├── .htaccess ├── index.html ├── Config │ ├── ForeignCharacters.php │ ├── CURLRequest.php │ ├── Images.php │ ├── Boot │ │ ├── production.php │ │ ├── testing.php │ │ └── development.php │ ├── Publisher.php │ ├── Honeypot.php │ ├── Services.php │ ├── Feature.php │ ├── Pager.php │ ├── Validation.php │ ├── Events.php │ ├── Kint.php │ ├── Filters.php │ ├── Migrations.php │ ├── View.php │ ├── Generators.php │ ├── Routes.php │ ├── Modules.php │ ├── Database.php │ ├── Email.php │ ├── Format.php │ ├── Encryption.php │ ├── Paths.php │ ├── DocTypes.php │ ├── Exceptions.php │ ├── Autoload.php │ ├── Toolbar.php │ ├── Security.php │ ├── Cookie.php │ ├── Session.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Logger.php │ ├── Cache.php │ ├── UserAgents.php │ └── Mimes.php ├── Common.php └── Controllers │ ├── Home.php │ ├── Dashboard.php │ ├── BaseController.php │ └── User.php ├── public ├── robots.txt ├── favicon.ico ├── .htaccess └── index.php ├── writable ├── .htaccess ├── cache │ └── index.html ├── logs │ └── index.html ├── session │ └── index.html └── uploads │ └── index.html ├── tests ├── _support │ ├── Libraries │ │ └── ConfigReader.php │ ├── Models │ │ └── ExampleModel.php │ └── Database │ │ ├── Migrations │ │ └── 2020-02-22-222222_example_migration.php │ │ └── Seeds │ │ └── ExampleSeeder.php ├── session │ └── ExampleSessionTest.php ├── database │ └── ExampleDatabaseTest.php ├── unit │ └── HealthTest.php └── README.md ├── composer.json ├── LICENSE ├── README.md ├── phpunit.xml.dist ├── spark ├── preload.php └── env /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /app/Views/about.php: -------------------------------------------------------------------------------- 1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- 1 | 2 |4 | getFlashdata('message'))) { 6 | echo $session->getFlashdata('message'); 7 | } 8 | ?> 9 |
10 | -------------------------------------------------------------------------------- /app/Models/UserModel.php: -------------------------------------------------------------------------------- 1 | DASHBOARD 2 |3 | 8 |
9 | 10 |your email: 11 | = $email ?> 12 |
13 |your api token: 14 | = $token ?> 15 |
16 |= lang('Errors.weHitASnag') ?>
20 | 21 |4 | 9 |
10 | 33 |76 | 77 | = nl2br(esc($message)) ?> 78 | 79 | = lang('Errors.sorryCannotFind') ?> 80 | 81 |
82 |