simplenews_handler_field_category_hyperlinks.inc 406 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Views handler for simplenews field simplewnews_category.hyperlinks.
  5. */
  6. /**
  7. * Provide HTML Mail Hyperlinks position settings.
  8. */
  9. class simplenews_handler_field_category_hyperlinks extends views_handler_field {
  10. function render($values) {
  11. switch ($values->{$this->field_alias}) {
  12. case 0:
  13. return t('Bottom');
  14. case 1:
  15. return t('Inline');
  16. }
  17. }
  18. }