mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
Mobile theme:
- Eliminates some actions from contextmenu only on mobile
This commit is contained in:
parent
f5a6d52ae2
commit
dbd97cd37a
@ -372,7 +372,8 @@ class addressbook_ui extends addressbook_bo
|
||||
'disableClass' => 'contact_organisation',
|
||||
'hideOnDisabled' => true,
|
||||
// Children added below
|
||||
'children' => array()
|
||||
'children' => array(),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'open' => array(
|
||||
'caption' => 'Open',
|
||||
@ -404,6 +405,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'icon' => 'copy',
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
);
|
||||
// CRM view options
|
||||
@ -548,6 +550,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'prefix' => 'move_to_',
|
||||
'group' => $group,
|
||||
'disableClass' => 'rowNoDelete',
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
}
|
||||
$actions['merge'] = array(
|
||||
@ -556,6 +559,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'hint' => 'Merge into first or account, deletes all other!',
|
||||
'allowOnMultiple' => 'only',
|
||||
'group' => $group,
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
|
||||
++$group; // integration with other apps: infolog, calendar, filemanager
|
||||
@ -580,7 +584,8 @@ class addressbook_ui extends addressbook_bo
|
||||
'popup' => egw_link::get_registry('infolog', 'add_popup'),
|
||||
'onExecute' => 'javaScript:app.addressbook.add_task', // call server for org-view only
|
||||
),
|
||||
)
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
}
|
||||
if ($GLOBALS['egw_info']['user']['apps']['calendar'])
|
||||
@ -604,6 +609,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'onExecute' => 'javaScript:app.addressbook.add_cal',
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
}
|
||||
//Send to email
|
||||
@ -664,6 +670,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'group' => $group,
|
||||
// disable for for org-views, as it needs contact-ids
|
||||
'disableClass' => 'contact_organisation',
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
}
|
||||
// check if user is an admin or the export is not generally turned off (contact_export_limit is non-numerical, eg. no)
|
||||
@ -687,6 +694,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'icon' => egw_vfs::mime_icon('text/vcard'),
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
}
|
||||
|
||||
@ -703,6 +711,7 @@ class addressbook_ui extends addressbook_bo
|
||||
'onExecute' => 'javaScript:app.addressbook.adb_mail_vcard',
|
||||
'disableClass' => 'contact_organisation',
|
||||
'hideOnDisabled' => true,
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
}
|
||||
++$group;
|
||||
|
@ -868,7 +868,8 @@ class calendar_uilist extends calendar_ui
|
||||
$actions = array(
|
||||
'add' => array(
|
||||
'caption' => 'Add',
|
||||
'egw_open' => 'add-calendar'
|
||||
'egw_open' => 'add-calendar',
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'open' => array(
|
||||
'caption' => 'Open',
|
||||
|
@ -1089,6 +1089,7 @@ class infolog_ui
|
||||
'enabled' => 'javaScript:app.infolog.has_parent',
|
||||
'onExecute' => 'javaScript:app.infolog.view_parent',
|
||||
'group' => $group,
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'add' => array(
|
||||
'caption' => 'Add',
|
||||
@ -1115,6 +1116,7 @@ class infolog_ui
|
||||
'icon' => 'copy',
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'no_notifications' => array(
|
||||
'caption' => 'Do not notify',
|
||||
@ -1165,6 +1167,7 @@ class infolog_ui
|
||||
'nm_action' => 'open_popup',
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'close' => array(
|
||||
'caption' => 'Close',
|
||||
@ -1245,6 +1248,7 @@ class infolog_ui
|
||||
'postSubmit' => true, // download needs post submit to work
|
||||
'group' => $group,
|
||||
'allowOnMultiple' => true,
|
||||
'hideOnMobile' => true
|
||||
);
|
||||
|
||||
$actions['delete'] = array(
|
||||
|
@ -955,6 +955,7 @@ class mail_ui
|
||||
'onExecute' => 'javaScript:app.mail.mail_compose',
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'composeasnew' => array(
|
||||
'caption' => 'Compose',
|
||||
@ -1063,6 +1064,7 @@ class mail_ui
|
||||
'allowOnMultiple' => false,
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'view' => array(
|
||||
'caption' => 'View',
|
||||
@ -1102,6 +1104,7 @@ class mail_ui
|
||||
'allowOnMultiple' => false,
|
||||
),
|
||||
),
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'mark' => array(
|
||||
'caption' => 'Set / Remove Flags',
|
||||
|
@ -195,6 +195,7 @@ class resources_ui
|
||||
'url' => 'menuaction=resources.resources_ui.edit&accessory_of=-1',
|
||||
'popup' => egw_link::get_registry('resources', 'add_popup'),
|
||||
'group' => $group,
|
||||
'hideOnMobile' => true
|
||||
),
|
||||
'view-acc' => array(
|
||||
'caption' => 'View accessories',
|
||||
|
Loading…
Reference in New Issue
Block a user