function _mobile_switch_block_content_options in Mobile Switch Block 6
Same name and namespace in other branches
- 7.2 mobile_switch_block.module \_mobile_switch_block_content_options()
- 7 mobile_switch_block.module \_mobile_switch_block_content_options()
Helper function to get block content options.
See also
mobile_switch_block_form_mobile_switch_advanced_settings_form_alter()
mobile_switch_block_block_configure()
2 calls to _mobile_switch_block_content_options()
- mobile_switch_block_block in ./
mobile_switch_block.module - Implementation of hook_block().
- mobile_switch_block_form_mobile_switch_advanced_settings_form_alter in ./
mobile_switch_block.module - Implementation of hook_form_FORM_ID_alter().
File
- ./
mobile_switch_block.module, line 360 - Extends the Mobile Switch module with an theme switch block.
Code
function _mobile_switch_block_content_options() {
return array(
'link' => t('Only the switch link'),
'message_link' => t('Message and switch link'),
);
}