simplenews_handler_filter_category_new_account.inc 471 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Views fiter handler for simplenews_category.new_account.
  5. */
  6. /**
  7. * Provide translatable simplenews_category.new_account Options.
  8. */
  9. class simplenews_handler_filter_category_new_account extends views_handler_filter_in_operator {
  10. function get_value_options() {
  11. $this->value_options = array(
  12. 'none' => t('None'),
  13. 'on' => t('Default on'),
  14. 'off' => t('Default off'),
  15. 'silent' => t('invisible Subscrition'),
  16. );
  17. }
  18. }