Drupal6-更好的blockids函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal6-更好的blockids函数相关的知识,希望对你有一定的参考价值。
Copy the first code snippet to your theme's template.php.Then call the following section in you block template file.
/*The function*/ <?php function block_id(&$block) { $info = module_invoke($block->module, 'block', 'list'); if ($info[$block->delta]['info']) { $block_id = 'block-' . $block->module . '-' . $info[$block->delta]['info']; } else { return 'block-' . $block->module . '-' . $block->delta; } } ?> /*Call this in your block.tpl.php file*/ <?php print block_id($block); ?>
以上是关于Drupal6-更好的blockids函数的主要内容,如果未能解决你的问题,请参考以下文章