Multiblock makes it possible to create multiple instances of the Mobile Tools message block, which could be used when a site supports multiple domains (e.g.: via Domain Access). Mobile Tools could be made "multiblock enabled", as described in the following blurb taken from the Multiblock Readme file. If anyone is interested and has programming skills please provide a patch.
you have to first add an $op to your hook_block called 'mb_enabled'.It should always return the string 'mb_enabled'. Once you do this, the instances you create will get the block instance ID passed in the $edit variable for the view, configure, and save $ops. This will let you save and load different data to different instances based on this instance ID. It is passed in with the 'multiblock_delta' key with the following format:
$edit['multiblock_delta'] = array(
'#type' => 'value',
'#value' => $block_id
);
Comments
Comment #1
devin carlson commentedI don't see a need to integrate with Multiblock, as Mobile Tools allows you to customize panels or views for mobile devices. If anything, Mobile Tools should provide an additional "mobile device" block visibility setting to regular blocks. This can already be accomplished by making a call to
mobile_tools_site_type().