/ Published in: PHP
Allow for easier editing of content by users who didn't make the site.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<div class="<?php print "block block-$block->module" ?>" id="<?php print "block-$block->module-$block-> delta"; ?>"> <?php print $block->subject ?> <div class="content"><?php print $block->content ?> <?php if ($block->module == "block"):?> <?php if (user_access('administer blocks')) :?> <br /><center><a href='/admin/block/edit/<?php print $block->delta;?>'>(edit this block)</a></center> <?php endif; ?> <?php endif; ?> </div> </div>
URL: http://drupal.org/node/120334