1
Hi, I'm developing a a block where I'd like to be able to change the title dynamically, such as:
/modules/mymod/block/mymod_show.php
function module_show($options) {
if ($REQUEST['x']=='y') {
$block.title='title one';
} else {
$block.title='title two';
}
.
.
.
return $block;
}
Is there a simple way of doing this? I've searched around to no avail.