';
}
/**
* Insert primary and secondary tabs into page.
*/
function seven_preprocess_page(&$vars) {
$vars['primary_local_tasks'] = menu_primary_local_tasks();
$vars['secondary_local_tasks'] = menu_secondary_local_tasks();
}
/**
* Display the list of available node types for node creation.
*/
function seven_node_add_list($content) {
$output = '';
if ($content) {
$output = '
';
}
return $output;
}
/**
* Override of theme_admin_block_content().
*
* Use unordered list markup in both compact and extended move.
*/
function seven_admin_block_content($content) {
$output = '';
if (!empty($content)) {
$output = system_admin_compact_mode() ? '' : '';
}
return $output;
}
/**
* Override of theme_tablesort_indicator().
*
* Use our own image versions, so they show up as black and not gray on gray.
*/
function seven_tablesort_indicator($style) {
$theme_path = drupal_get_path('theme', 'seven');
if ($style == "asc") {
return theme('image', array('path' => $theme_path . '/images/arrow-asc.png', 'alt' => t('sort icon'), 'title' => t('sort ascending')));
}
else {
return theme('image', array('path' => $theme_path . '/images/arrow-desc.png', 'alt' => t('sort icon'), 'title' => t('sort descending')));
}
}