Now 'ideas' are 'jot downs' in menu, titles and shortcuts

This commit is contained in:
Manuel Cillero 2017-09-18 21:46:19 +02:00
parent db7151fff6
commit 23702da60f
4 changed files with 7 additions and 7 deletions

View file

@ -14,7 +14,7 @@ function stormidea_list() {
$header = array(
array(
'data' => t('Idea'),
'data' => t('Reminder'),
'field' => 'n.title',
),
array(

View file

@ -118,7 +118,7 @@ function stormidea_menu() {
$items = array();
$items['ideas'] = array(
'title' => 'My ideas',
'title' => 'Jot downs',
'description' => 'SuiteDesk ideas',
'page callback' => 'stormidea_list',
'access arguments' => array('Storm idea: access'),
@ -157,7 +157,7 @@ function stormidea_node_info() {
function stormidea_form(&$node) {
$breadcrumb = array();
$breadcrumb[] = l(t('Home'), '<front>');
$breadcrumb[] = l(t('My ideas'), 'ideas');
$breadcrumb[] = l(t('Jot downs'), 'ideas');
drupal_set_breadcrumb($breadcrumb);
$type = node_get_types('type', $node);
@ -192,7 +192,7 @@ function stormidea_nodeapi($node, $op, $a3 = NULL, $a4 = NULL) {
function stormidea_view($node, $teaser = FALSE, $page = FALSE) {
$breadcrumb = array();
$breadcrumb[] = l(t('Home'), '<front>');
$breadcrumb[] = l(t('My ideas'), 'ideas');
$breadcrumb[] = l(t('Jot downs'), 'ideas');
drupal_set_breadcrumb($breadcrumb);
return theme('stormidea_view', $node, $teaser, $page);
@ -210,7 +210,7 @@ function stormidea_storm_dashboard_links($type) {
if ($type == 'page' || $type == 'block') {
$links[] = array(
'theme' => 'storm_dashboard_link',
'title' => t('My ideas'),
'title' => t('Jot downs'),
'icon' => 'stormidea-item',
'path' => 'ideas',
'params' => array(),

View file

@ -558,7 +558,7 @@ table#stormtasks td .popups-form {
}
}
table#tasks tbody tr td:first-child {
table#tasks tr td:first-child {
overflow: hidden;
word-wrap: normal;
white-space: nowrap;

View file

@ -205,7 +205,7 @@ function zuitedesk_preprocess_page(&$vars, $hook) {
// User submenu:
$submenu = '';
$submenu .= _zuitedesk_option($deskmenu[14], "$lang/notes", t('My notes'), 'notes', 'note');
$submenu .= _zuitedesk_option($deskmenu[15], "$lang/ideas", t('My ideas'), 'ideas', 'idea');
$submenu .= _zuitedesk_option($deskmenu[15], "$lang/ideas", t('Jot downs'), 'ideas', 'idea');
$submenu .= _zuitedesk_option(TRUE, '', 'SuiteDesk Tour', 'help', 'help', t('A beginner\'s guide to SuiteDesk'));
$partial = '';
$partial .= _zuitedesk_option($deskmenu[17], "$lang/user/watcher", t('Watcher'), 'watcher', 'apply');