Skip to content

Instantly share code, notes, and snippets.

@katzueno
Created October 28, 2015 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katzueno/24ba6a251a5e5ac4782b to your computer and use it in GitHub Desktop.
Save katzueno/24ba6a251a5e5ac4782b to your computer and use it in GitHub Desktop.
concrete5 特定ページで使用しているブロックのID取得
<?php
$page = Page::getByID(1); // cID で指定したページのオブジェクトを指定
$blocks = $page->getBlocks("Main"); // 指定した「Main」エリアのブロックの情報を取得
if ($blocks) {
foreach($blocks as $block) {
echo h($block->bID) . ", ";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment