From 1a2fb075c28b83c5051ca8f3ace979d8893fed03 Mon Sep 17 00:00:00 2001 From: ryuring Date: Mon, 17 Aug 2020 20:13:57 +0900 Subject: [PATCH] =?UTF-8?q?setting.php=20=E3=81=AE=E5=88=A9=E7=94=A8?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E3=82=92=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88?= =?UTF-8?q?=E3=81=AB=E6=98=8E=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Config/setting.php | 11 +++++++++-- lib/Baser/Config/setting.php | 14 ++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/app/Config/setting.php b/app/Config/setting.php index dcb3c934a8..62c7e8ebc6 100755 --- a/app/Config/setting.php +++ b/app/Config/setting.php @@ -11,8 +11,15 @@ */ /** - * メニューを非表示にする例 - * $config['BcApp.adminNavigation.Contents.Contents.menus.ContentsTrash.disable'] = true; + * baserCMS アプリケーション設定 + * + * `/lib/Baser/Config/setting.php` に全ての設定が記述されています。 + * 必要な設定をこのファイルに記述するとこちらが優先されます。 + * + * (例) + * $config['BcApp'] = [ + * 'title' => __d('baser', 'Custom baserCMS') + * ]; */ $config = []; diff --git a/lib/Baser/Config/setting.php b/lib/Baser/Config/setting.php index b29b57bd14..5aedd510b7 100755 --- a/lib/Baser/Config/setting.php +++ b/lib/Baser/Config/setting.php @@ -23,6 +23,20 @@ // テンプレートの基本となる拡張子(.php 推奨) 'templateExt' => '.php', // システムナビ + // + // 初期状態で表示するメニューは、`Contents` キー配下に定義し、「設定」内に格納する場合は、`Systems` キー配下に定義する + // + // ■ メインメニュー + // `title` : 表示名称 + // `type` : `system` または、コンテンツを特定する任意の文字列を指定。「設定」内に格納する場合は、`system` を指定 + // `url` : リンク先URL + // `menus` : サブメニューが存在する場合に配列で指定 + // `disable` : 非表示にする場合に `true` を指定 + // + // ■ サブメニュー + // `title` : 表示名称 + // `url` : リンク先URL + // `disable` : 非表示にする場合に `true` を指定 'adminNavigation' => [ 'Contents' => [ 'Dashboard' => [