Ideas are reminders
This commit is contained in:
parent
78a3d9a6f2
commit
178466cdae
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
name = Storm Idea
|
name = Storm Reminder
|
||||||
description = "Allows creation of personal quick notes."
|
description = "Allows creation of personal quick notes."
|
||||||
dependencies[] = storm
|
dependencies[] = storm
|
||||||
package = Storm
|
package = Storm
|
||||||
|
|
|
@ -146,7 +146,7 @@ function stormidea_theme() {
|
||||||
function stormidea_node_info() {
|
function stormidea_node_info() {
|
||||||
return array(
|
return array(
|
||||||
'stormidea' => array(
|
'stormidea' => array(
|
||||||
'name' => t('Idea'),
|
'name' => t('Reminder'),
|
||||||
'module' => 'stormidea',
|
'module' => 'stormidea',
|
||||||
'description' => t("A quick note for SuiteDesk."),
|
'description' => t("A quick note for SuiteDesk."),
|
||||||
'has_body' => TRUE,
|
'has_body' => TRUE,
|
||||||
|
|
|
@ -162,7 +162,7 @@ function zuitedesk_preprocess_page(&$vars, $hook) {
|
||||||
$pl = '';
|
$pl = '';
|
||||||
if ($vars['logged_in'] && !empty($deskmenu)) {
|
if ($vars['logged_in'] && !empty($deskmenu)) {
|
||||||
// Home option:
|
// Home option:
|
||||||
$pl .= _zuitedesk_option(TRUE, "$lang/", t('Home'), 'home', NULL, t('Desktop'));
|
$pl .= _zuitedesk_option(TRUE, "$lang", t('Home'), 'home', NULL, t('Desktop'));
|
||||||
// CRM submenu:
|
// CRM submenu:
|
||||||
$submenu = '';
|
$submenu = '';
|
||||||
$submenu .= _zuitedesk_option(!empty($_SESSION['SuiteCRM_Session_ID']), "$lang/suitecrm", 'SuiteCRM', 'suitecrm', 'crm', t('Core sales, customer service and marketing processes with SuiteCRM'));
|
$submenu .= _zuitedesk_option(!empty($_SESSION['SuiteCRM_Session_ID']), "$lang/suitecrm", 'SuiteCRM', 'suitecrm', 'crm', t('Core sales, customer service and marketing processes with SuiteCRM'));
|
||||||
|
|
Reference in a new issue