You are here

function Notifications_Subscription::add_condition in Notifications 6.4

Add a new condition, update counter

File

includes/notifications_subscription.class.inc, line 431
Drupal Notifications Framework - Default class file

Class

Notifications_Subscription
Message destination class

Code

function add_condition($name, $value) {
  $this
    ->add_field($name, $value);
  $this->conditions++;
}