function linkit_profile_load_all in Linkit 7.2
Same name and namespace in other branches
- 7.3 linkit.module \linkit_profile_load_all()
Load all Linkit profiles.
4 calls to linkit_profile_load_all()
- linkit_get_dashboard_profile in ./
linkit.module - Get the "best" Linkit profile based on the users roles to use on the dashboard.
- linkit_profiles_reorder in plugins/
export_ui/ linkit_profiles.inc - Form for reorder profiles.
- _linkit_get_associated_roles in plugins/
export_ui/ linkit_profiles.inc - Get all roles that is associated to profiles and make an array of them.
- _linkit_get_profile_names in ./
linkit.module - Get all Linkit profiles and return there names.
1 string reference to 'linkit_profile_load_all'
- linkit_schema in ./
linkit.install - Implements hook_schema().
File
- ./
linkit.module, line 879 - Main file for linkit module.
Code
function linkit_profile_load_all() {
ctools_include('export');
$profiles = ctools_export_load_object('linkit_profiles');
return $profiles;
}