You are here

function og_handler_field_website in Organic groups 5.2

Views handler to display the external website field

1 string reference to 'og_handler_field_website'
og_views_tables in ./og_views.inc
Implementation of the hook_views_tables()

File

./og_views.inc, line 924

Code

function og_handler_field_website($fieldinfo, $fielddata, $value, $data) {
  if ($value) {
    return l(t('external website'), $value);
  }
}