Files
gallery3/core/views/block.html.php
T
Bharat Mediratta b82332192a The carousel block is now off into its own module. The
sidebar.html.php file loops over $theme->blocks() which in turn calls
carousel::block() which uses the Block object to create a standard
block UI.  Hooray!
2008-11-05 05:20:20 +00:00

10 lines
229 B
PHP

<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="<?= $id ?>" class="gBlock">
<div class="gBlockHeader">
<h2><?= $title ?></h2>
</div>
<div class="gBlockContent">
<?= $content ?>
</div>
</div>