simplenews_handler_filter_category_hyperlinks.inc 378 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @file
  4. * Views handler for simplenews field simplewnews_category.hyperlinks.
  5. */
  6. /**
  7. * Display HTML Mail Hyperlinks position settings.
  8. */
  9. class simplenews_handler_filter_category_hyperlinks extends views_handler_filter_in_operator {
  10. function get_value_options() {
  11. $this->value_options = array(
  12. 0 => t('Bottom'),
  13. 1 => t('Inline'),
  14. );
  15. }
  16. }