function views_isotope_available_configs in Views Isotope (Deprecated) 7.2
Return a list of available configs.
Return value
array A list of available configs in a format ready for a select element.
2 calls to views_isotope_available_configs()
- isotope_reaction::options_form in plugins/
context/ views_isotope_reaction.inc - Configuration form for the Isotope context reaction.
- ViewsIsotopeViewsPluginStyleIsotopeGrid::options_form in views/
ViewsIsotopeViewsPluginStyleIsotopeGrid.inc - Render the given style.
File
- ./
views_isotope.module, line 113 - Load the isotope library and provide configuration and theme options.
Code
function views_isotope_available_configs() {
$available_configs = ctools_export_crud_load_all('isotope_configurations');
foreach ($available_configs as $key => $value) {
$available_configs[$key] = $value->admin_title;
}
return $available_configs;
}