blockify.theme.inc in Blockify 7
Same filename and directory in other branches
Theme functions for the Blockify module.
File
blockify.theme.incView source
<?php
/**
* @file
* Theme functions for the Blockify module.
*/
/**
* Returns the rendered logo.
*
* @ingroup themeable
*/
function theme_blockify_logo($variables) {
$site_name = filter_xss_admin(variable_get('site_name', 'Drupal'));
// We only need the path.
$path = file_create_url($variables['logo_path']);
$image = array(
'#theme' => 'image',
'#path' => $path,
'#alt' => t('!site_name logo', array(
'!site_name' => $site_name,
)),
);
return l(render($image), '<front>', array(
'html' => TRUE,
'attributes' => array(
'id' => 'logo',
'rel' => 'home',
'title' => t('Return to the !site_name home page', array(
'!site_name' => $site_name,
)),
),
));
}
/**
* Returns the rendered site name.
*
* @ingroup themeable
*/
function theme_blockify_site_name($variables) {
$title = drupal_get_title();
$site_name = $variables['site_name'];
// If there is no page title set for this page, use an h1 for the site name.
$tag = $title !== '' ? 'span' : 'h1';
$link = array(
'#theme' => 'link',
'#path' => '<front>',
'#text' => '<span>' . $site_name . '</span>',
'#prefix' => '<' . $tag . ' id="site-name">',
'#suffix' => '</' . $tag . '>',
'#options' => array(
'attributes' => array(
'title' => t('Return to the !site_name home page', array(
'!site_name' => $site_name,
)),
'rel' => 'home',
),
'html' => TRUE,
),
);
return render($link);
}
/**
* Returns the rendered site slogan.
*
* @ingroup themeable
*/
function theme_blockify_site_slogan($variables) {
return '<span class="site-slogan">' . $variables['site_slogan'] . '</span>';
}
/**
* Returns the rendered page title.
*
* @ingroup themeable
*/
function theme_blockify_page_title($variables) {
if ($variables['page_title'] !== '') {
$title_attributes_array = array(
'class' => array(
'title',
),
'id' => array(
'page-title',
),
);
$title_attributes = drupal_attributes($title_attributes_array);
return '<h1' . $title_attributes . '>' . $variables['page_title'] . '</h1>';
}
}
/**
* Returns the rendered breadcrumb.
*
* @ingroup themeable
*/
function theme_blockify_breadcrumb($variables) {
return theme('breadcrumb', $variables);
}
/**
* Returns the rendered action items.
*
* @ingroup themeable
*/
function theme_blockify_local_actions($variables) {
$actions = render($variables['menu_local_actions']);
if (!empty($actions)) {
return '<ul class="action-links" class="clearfix">' . $actions . '</ul>';
}
}
/**
* Returns the rendered feed icons.
*
* @ingroup themeable
*/
function theme_blockify_feed_icons($variables) {
return $variables['feed_icons'];
}
/**
* Returns the rendered menu local tasks.
*
* @ingroup themeable
*/
function theme_blockify_menu_local_tasks($variables) {
$tabs = theme('menu_local_tasks', $variables);
if (!empty($tabs)) {
return '<div id="tabs" class="clearfix">' . $tabs . '</div>';
}
}
Functions
Name![]() |
Description |
---|---|
theme_blockify_breadcrumb | Returns the rendered breadcrumb. |
theme_blockify_feed_icons | Returns the rendered feed icons. |
theme_blockify_local_actions | Returns the rendered action items. |
theme_blockify_logo | Returns the rendered logo. |
theme_blockify_menu_local_tasks | Returns the rendered menu local tasks. |
theme_blockify_page_title | Returns the rendered page title. |
theme_blockify_site_name | Returns the rendered site name. |
theme_blockify_site_slogan | Returns the rendered site slogan. |