You are here

function mobile_tools_device_group_load_all in Mobile Tools 7.3

Fetches all device groups from the database

8 calls to mobile_tools_device_group_load_all()
mobile_tools_context_condition_device_group::condition_form in mobile_tools_context/mobile_tools_context.condition_device_group.inc
Configuration form
mobile_tools_context_condition_device_group::condition_values in mobile_tools_context/mobile_tools_context.condition_device_group.inc
Default values
mobile_tools_context_device_group_access_check_settings in mobile_tools_context/plugins/access/is_device_group.inc
Settings form for the 'by perm' access plugin
mobile_tools_device_groups_list in ./mobile_tools.admin.inc
Lists the existing device groups
mobile_tools_entity_info_alter in ./mobile_tools.module
Implements of hook_entity_info_alter()

... See full list

File

./mobile_tools.module, line 305
Functionality to ease the creation of mixed device environments.

Code

function mobile_tools_device_group_load_all() {
  ctools_include('export');
  $device_groups = ctools_export_crud_load_all('mobile_tools_device_group');
  return $device_groups;
}