function shariff_theme in Shariff Social Media Buttons 7
Same name and namespace in other branches
- 8 shariff.module \shariff_theme()
Implements hook_theme().
4 string references to 'shariff_theme'
- shariff_preprocess_shariff in ./
shariff.module - Implements hook_preprocess().
- shariff_sharing_buttons_content_type_edit_form_submit in plugins/
content_types/ sharing_buttons.inc - Form submission handler for shariff_sharing_buttons_content_type_edit_form().
- shariff_uninstall in ./
shariff.install - Implements hook_uninstall().
- _shariff_get_settings in ./
shariff.module - Helper function to get the module settings.
File
- ./
shariff.module, line 320 - Integrating Shariff library, providing settings form and block.
Code
function shariff_theme() {
return array(
'shariff' => array(
'variables' => array(
'services' => NULL,
'shariff_theme' => NULL,
'orientation' => NULL,
'twitter_via' => NULL,
'referrer_track' => NULL,
'mail_url' => NULL,
'mail_subject' => NULL,
'mail_body' => NULL,
'backend_url' => NULL,
'flattr_category' => NULL,
'flattr_user' => NULL,
'media_url' => NULL,
'lang' => NULL,
'url' => NULL,
),
),
);
}