You are here

function theme_shrinktheweb_formatter_shrinktheweb_link_label in ShrinkTheWeb 7

Theme function for 'label' text field formatter.

File

./shrinktheweb.module, line 336

Code

function theme_shrinktheweb_formatter_shrinktheweb_link_label($vars) {
  $preview = theme('shrinktheweb_image', array(
    'url' => $vars['element']['url'],
    'options' => array(
      'attributes' => array(
        'class' => array(
          'shrinktheweb',
        ),
      ),
    ),
  ));
  return $vars['element']['url'] ? $preview . l($vars['field']['label'], $vars['element']['url'], array(
    'attributes' => $vars['element']['attributes'],
  )) : '';
}