concrete5 逆引きリファレンス
ページの標準プロパティを取得する
2021/04/24 23:10
concrete5のページデータに標準で適用される属性データを取得する
$pageにページオブジェクトを取得している場合 ->ページオブジェクトの取得
ページIDを取得
$page->getCollectionID();
ページ名を取得
$page->getCollectionName();
ページ説明を取得
$page->getCollectionDescription();
ページの作成日時を取得
標準では2021-04-22 22:10:03の形式で取得されます。
$page->getCollectionDateAdded();
ページの公開日を取得
$page->getCollectionDatePublic();
ページの最終更新日を取得
$page->getVersionObject()->getVersionDateCreated();
日付の形式を変えて表示する、2021/04/22 10:10:03 pmの形式で表示されます。
$addDate = $page->getCollectionDateAdded(); echo \Core::make('date')->formatCustom('Y/m/d h:i:s a',$addDate);
ページ所有者のユーザーIDを取得
$page->getCollectionUserID();
ページのURLを取得します。
$page->getCollectionPath();
ページのURLスラッグを取得する。
$page->getCollectionHandle();
New Content
2021/07/02 16:59
2021/06/23 21:58
2021/06/22 22:01
2021/06/17 22:38
2021/06/15 22:00