function _crumbs_get_settings in Crumbs, the Breadcrumbs suite 6
2 calls to _crumbs_get_settings()
- _crumbs_get_objects in ./
crumbs.module - Collect plugin objects
- _crumbs_get_objects_by_method in ./
crumbs.module - Collect plugin objects, but sorted/keyed in a special way
File
- ./
crumbs.module, line 108
Code
function _crumbs_get_settings() {
$settings = variable_get('crumbs', array());
return is_array($settings) ? $settings : array();
}