Skip to content

Instantly share code, notes, and snippets.

@katzueno
Created October 28, 2015 12:55
Show Gist options
  • Select an option

  • Save katzueno/24ba6a251a5e5ac4782b to your computer and use it in GitHub Desktop.

Select an option

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