Define a new block in drupal
open "site_base"/ template/"template_name"/template.php
function themeName_regions()
{
return array(
"left"=>t("left sidebar"),
"right"=>t("right sidebar"),
"newRegion"=>t("human readable name for the region");
)
}
you must edit theme file(Especially page.tpl.php) for outputing "newRegion"
thanks much this worked great!
ReplyDeletethere is a parse error in the array (it's ended ; one level too high
:)