| 1 |
<?php |
| 2 |
/** |
| 3 |
* |
| 4 |
*/ |
| 5 |
|
| 6 |
// Disallow direct access. |
| 7 |
defined('ABSPATH') or die('Restricted Access'); |
| 8 |
|
| 9 |
// Get block view content. |
| 10 |
$blockView = $this->getBlockView(); |
| 11 |
$blockContent = $blockView->getTemplate($blockView->templateName); |
| 12 |
|
| 13 |
// Put the Objects Panel at the begning of the block content. |
| 14 |
echo $this->getTemplate('objects-panel', array('block' => $blockView->getBlock()), 'tmpl/templates'); |
| 15 |
echo $blockContent; |