You are here

function notifications_views_handler_filter_perm::get_value_options in Notifications 6.2

File

notifications_views/notifications_views_handler_filter_perm.inc, line 6

Class

notifications_views_handler_filter_perm
Filter for permissions of a user, probably not all that reliable, use with caution.

Code

function get_value_options() {
  $opt = module_invoke_all('perm');
  $this->value_options = array();
  foreach ($opt as $opt) {
    $this->value_options[$opt] = $opt;
  }
}