function panels_panels_dashboard_blocks in Panels 7.3
Same name and namespace in other branches
- 6.3 includes/callbacks.inc \panels_panels_dashboard_blocks()
Implementation of hook_panels_dashboard_blocks().
Adds page information to the Panels dashboard.
File
- includes/
callbacks.inc, line 43 - Callbacks.inc Minor menu callbacks for Panels helpers.
Code
function panels_panels_dashboard_blocks(&$vars) {
$vars['links']['panels_layout'] = array(
'title' => l(t('Custom layout'), 'admin/structure/panels/layouts/add'),
'description' => t('Custom layouts can add more, site-specific layouts that you can use in your panels.'),
);
// Load all mini panels and their displays.
ctools_include('export');
$items = ctools_export_crud_load_all('panels_layout');
$count = 0;
$rows = array();
foreach ($items as $item) {
$rows[] = array(
check_plain($item->admin_title),
array(
'data' => l(t('Edit'), "admin/structure/panels/layouts/list/{$item->name}/edit"),
'class' => 'links',
),
);
// Only show 10.
if (++$count >= 10) {
break;
}
}
if ($rows) {
$content = theme('table', array(
'rows' => $rows,
'attributes' => array(
'class' => 'panels-manage',
),
));
}
else {
$content = '<p>' . t('There are no custom layouts.') . '</p>';
}
$vars['blocks']['panels_layout'] = array(
'title' => t('Manage custom layouts'),
'link' => l(t('Go to list'), 'admin/structure/panels/layouts'),
'content' => $content,
'class' => 'dashboard-layouts',
'section' => 'right',
);
}