You are here

function biblio_get_biblio_styles in Bibliography Module 7.3

Helper function to include CTools plugins and get all notifier plugins.

5 calls to biblio_get_biblio_styles()
biblio_get_exportable_biblio_styles in ./biblio.module
Helper function to return only exportable biblio styles.
biblio_get_notifiers_as_options in ./biblio.module
Helper function to return all notifiers as options for a select list.
biblio_handler_field_biblio_render::options_form in includes/views/handlers/biblio_handler_field_biblio_render.inc
Provide form to select a field name to render.
biblio_ui_admin_form in modules/biblio_ui/biblio_ui.admin.inc
Page callback; Form for biblio settings.
biblio_ui_import_biblio in modules/biblio_ui/biblio_ui.pages.inc
Import biblios.

File

./biblio.module, line 223
Maintains bibliographic lists.

Code

function biblio_get_biblio_styles() {
  ctools_include('plugins');
  return ctools_get_plugins('biblio', 'biblio_style');
}