You are here

function social_content_get_classes in Social Content 7.2

Get all classes which integrating modules declare.

Return value

array An array of classes.

4 calls to social_content_get_classes()
social_content_global_overview in ./social_content.admin.inc
Callback for hook_menu.
social_content_load in ./social_content.module
Implements hook_load().
social_content_variable_info in ./social_content.variable.inc
Implements hook_variable_info().
social_content_views_handler_filter_source::get_value_options in ./social_content_views_handler_filter_source.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.

File

./social_content.module, line 264
Social Content module.

Code

function social_content_get_classes() {
  $classes = module_invoke_all('social_content_class_info');
  drupal_alter('social_content_class_info', $classes);
  return $classes;
}