Footer Block
PermalinkRegards
Michael
I found code similar to the below somewhere else in the forums, but can't remember where. It basically stores the footer Area on your home page (that is where you'd edit it) and reads it in no matter what page you're on. The home page is pretty much always going to have the ID of 1.
$global_footer = Page::getByID(1); $ah = new Area('footer'); $ah->setBlockLimit(1); // this is optional $ah->display($global_footer);
This way you don't have to add blocks to any pages or even page types, it just shows up. Very cool.
Edit - you *do* have to add blocks to your footer Area on the home page. Every other page will automatically get the footer, assuming your footer.php is included in the page type. Just wanted to clarify that.
any workaround for this?
thanks!!
$block = Block::getByName('MailingListBox'); if( is_object($block) ) $block->display();
kirk's solution above is a good one too.
Everything I try always executes true - even if the block name doesn't match.
Here's what I would like...
if( is_object($cta) ) { echo $cta->display(); } else { if( $c->isEditMode() ) echo $message = '<span class="editing-notice"> <strong>Block Not Found</strong><br /> The attribute "<em>' . $c->getCollectionAttributeValue("call_to_action") . '</em>" could not be found in any shared scrapbook. Check the names of the blocks in the shared scrapbook and ensure one block matches the attribute value exactly. </span>'; }
The if(is_object) always returns true. I think it's because the Block:getByName() is creating a new object even if it can't pull a block by name.
I've tried a ton of different combos and tests (is_null, is_array, is_string, etc) - but still can't get the if statement to fail. Any ideas?
<?php $block = Block::getByName('test1'); if( is_object($block) ) $block->display(); ?>
<?php $a = new GlobalArea('Area Name'); $a->setBlockLimit(1); // optionally set a limit on number of blocks that can be added $a->display($c); ?>
Not sure if that will solve the issue, but that seems like the "right" way to do it nowadays.
There is a whole vimeo tutorial on this so just dig around the forum and you should find a link somewhere