Skip to content

Commit

Permalink
fix baserproject#3735 【baserCMS4】コンテンツ管理で固定ページのタイトルを変更してもフロント側に反映されない…
Browse files Browse the repository at this point in the history
…問題を解決
  • Loading branch information
kato committed Aug 23, 2024
1 parent 87f2ce7 commit 558f5ff
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lib/Baser/Controller/ContentsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -670,6 +670,20 @@ public function admin_ajax_rename()
$this->ajaxError(500, __d('baser', '名称変更中にエラーが発生しました。'));
return false;
}
// ページの場合、固定ページテンプレート書き出しも併せて行う
if ($data['Content']['type'] == 'Page') {
// リクエストデータに entity_idが入ってこないので、再取得
$contentData = $this->Content->findById($data['Content']['id']);
// ページモデル呼び出し
$Page = ClassRegistry::init('Page');
// 書き出し用にページデータを呼び出す。
$pageData = $Page->find('first', [
'conditions' => ['Page.id' => $contentData['Content']['entity_id']],
'recursive' => 2
]);
// 該当ページテンプレート書き出し
$Page->createPageTemplate($pageData);
}

$this->BcMessage->setSuccess(
sprintf(
Expand Down

0 comments on commit 558f5ff

Please sign in to comment.