function shoutbox_theme in Shoutbox 7.2
Same name and namespace in other branches
- 6.2 shoutbox.module \shoutbox_theme()
- 6 shoutbox.module \shoutbox_theme()
- 7 shoutbox.module \shoutbox_theme()
Implements hook_theme().
File
- ./
shoutbox.module, line 398 - Shoutbox module displays a block for users to create short messages for the whole site. Uses AHAH to update the database and display content.
Code
function shoutbox_theme() {
// Create the theme registry.
$registry = array(
'shoutbox_links' => array(
'variables' => array(),
),
'shoutbox_post_forbidden' => array(
'variables' => array(),
),
'shoutbox_interval_message' => array(
'variables' => array(
'interval' => NULL,
),
),
'shoutbox_block_page_link' => array(
'variables' => array(
'path' => NULL,
),
),
'shoutbox_external_files' => array(
'variables' => array(),
),
'shoutbox_post' => array(
'variables' => array(
'shout' => NULL,
'links' => array(),
),
),
'shoutbox_page' => array(
'variables' => array(
'rows' => array(),
),
),
);
// Add the theme file to each.
$file = 'shoutbox.theme.inc';
foreach ($registry as $key => $entry) {
$registry[$key]['file'] = $file;
}
return $registry;
}