Re: ページ属性を取得したフォームを作成したい
2018年6月8日 at 13:46
はい、可能です。
こちらのURLが参考になると思います。
http://concrete5-japan.org/help/5-7/developer/working-with-pages/searching-and-sorting-with-the-pagelist-object/
参考コードです
controller側の処理
$list = new PageList();
$list->filterByPageTypeHandle('blog_entry'); //ページタイプで絞り込みする場合
$pages = $list->getResults();
view側の処理
foreach($pages as $page){
echo $page->getAttribute('属性ハンドル'); //ページ属性表示処理
}
Your post has been saved and will be published after approval by the forum moderator.