simplenews_handler_filter_category_opt_inout.inc 435 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Views fiter handler for simplenews_category.opt_inout.
  5. */
  6. /**
  7. * Provide translatable simplenews_category.opt_inout Options.
  8. */
  9. class simplenews_handler_filter_category_opt_inout extends views_handler_filter_in_operator {
  10. function get_value_options() {
  11. $this->value_options = array(
  12. 'hidden' => t('Hidden'),
  13. 'single' => t('Single opt-in'),
  14. 'double' => t('Double opt-in'),
  15. );
  16. }
  17. }