You are here

function theme_references_dialog_links in References dialog 7

Theme function for theming the links for opening the references dialog.

1 theme call to theme_references_dialog_links()
reference_dialog_links_themed in ./references_dialog.module
Provides themed dialog links.

File

./references_dialog.module, line 823
This the main module file.

Code

function theme_references_dialog_links($variables) {
  return theme('links', array(
    'links' => $variables['links'],
    'attributes' => array(
      'class' => array(
        'references-dialog-links',
      ),
    ),
  ));
}