Skip to content

Instantly share code, notes, and snippets.

@masarliev
Last active January 4, 2016 04:39
Show Gist options
  • Save masarliev/8569881 to your computer and use it in GitHub Desktop.
Save masarliev/8569881 to your computer and use it in GitHub Desktop.
ZF2 Placeholder content from Controller
<div class="row">
<div class="col-sm-12">
<?php echo $this->placeholder('header');?>
</div>
</div>
<?php
/** @var $helper \Zend\View\Helper\Placeholder */
$helper = $this->getServiceLocator()->get('viewhelpermanager')->get('placeholder');
$header = $helper->getContainer('header');
$header->append('Some Content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment