Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 22 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,40 +40,35 @@ Web Application Basic of Yii Version 2. <a href="http://www.yiiframework.com/" t
```text
root
├── config
│ ├── common Common configuration.
│ │ ├── components.php
│ │ └── container.php
│ ├── console Console configuration.
│ ├── common Common configuration.
│ │ └── components.php
│ ├── console Console configuration.
│ │ └── app.php
│ ├── web Web configuration.
│ │ ├── app.php
│ │ └── components.php
│ ├── web Web configuration.
│ │ ├── app.php
│ │ ├── bootstrap.php
│ │ ├── components.php
│ │ ├── container.php
│ │ └── modules.php
│ ├── build.php Build configuration codeception tests.
│ ├── config-plugin.php Plugin configuration.
│ ├── messages.php Translation configuration.
│ ├── params-console.php Console parameters.
│ ├── params-web.php Web parameters.
│ └── params.php Common parameters.
│ ├── messages.php Translation configuration.
│ ├── params-console.php Console parameters.
│ └── params-web.php Web parameters.
├── src
│ ├── framework
│ │ ├── asset Asset bundle files.
│ │ ├── event Event handler files.
│ │ ├── asset Asset bundle files.
│ │ ├── event Event handler files.
│ │ └── resource
│ │ ├── css Css files.
│ │ ├── js Js files.
│ │ ├── layout Layout files.
│ │ └── message Translation files.
│ │ ├── css Css files.
│ │ ├── js Js files.
│ │ ├── layout Layout files.
│ │ ├── message Translation files.
│ │ └── ApplicationParameters.php Configuration application parameters.
│ └── usecase
│ ├── contact Contact use case.
│ ├── hello Hello use case (console).
│ └── site Site use case.
├── tests Tests codeception.
├── vendor Composer dependencies.
└── public Web server public.
│ ├── contact Contact use case.
│ ├── hello Hello use case (console).
│ ├── security Security use case.
│ └── site Site use case.
├── tests Tests codeception.
├── vendor Composer dependencies.
└── public Web server public.
```

## Features
Expand Down
Binary file modified docs/404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/contact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions src/usecase/site/view/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
?>
<div class="jumbotron jumbotron-fluid text-center">
<h1 class="display-2 fw-bold"><?= Yii::t('app.basic', 'Web Application') ?></h1>
<p class="lead fw-bold"><?= Yii::t('app.basic', 'Yii v.22') ?></p>
<?= Html::a(
Yii::t('app.basic', 'Get Started'),
'https://www.yiiframework.com/doc/',
[
'class' => 'btn btn-primary',
'class' => 'btn btn-primary mt-3',
],
) ?>
</div>
1 change: 0 additions & 1 deletion tests/Acceptance/SiteCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public function homePage(AcceptanceTester $I): void

$I->expectTo('see page index.');
$I->see('Web Application');
$I->see('Yii v.22');
$I->see('English');
}
}