Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Aug 4, 2024
1 parent fcf6ffe commit c6aaa7c
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions 5/introduce/use_for_cakephp.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ composer require baserproject/bc-column
composer require baserproject/baser-core:5.1.x --with-all-dependencies
```

### Application にプラグインを追加する
### プラグインを追加する

次のコマンドを実行すると、`Application::bootstrap()` に、BaserCore プラグインを読み込むコードが追加されます。
次のコマンドを実行すると、`/config/plugins.php` に、BaserCore プラグインを読み込むコードが追加されます。

```shell
bin/cake plugin load BaserCore
Expand All @@ -36,10 +36,19 @@ https://your-host-name/install

※ インストーラーがうまく起動しない場合は、`/config/app_local.php` が存在するか確認してください。存在しない場合は、`/config/app_local.example.php` をコピーして作成してください。

### トップページをbaserCMSのトップページにする
### routes.php を有効化する

`/config/routes.php` の次の行をコメントアウトします。
baserCMSをインストールすると、コンテンツ管理機能のフロントページにおけるルーティングを動作させるために、`/config/routes.php` が無効になります。
(何かしら設定を追記しても設定は破棄されます)

有効化するには、`/config/setting.php` を作成し次のように記述します。

```php
// $builder->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);
```
<?php
return [
'BcApp' => [
'enableRootRoutes' => true
]
];
```
その際、routes.php において、`$builder->fallbacks();` が有効になっていると、コンテンツ管理機能のフロントページにおけるルーティングがうまくいかなくなりますので注意してください。

0 comments on commit c6aaa7c

Please sign in to comment.