You are here

function Notifications_Field::get_query_condition in Notifications 7

Get query condition for current value

File

./notifications.field.inc, line 133
Drupal Notifications Framework - Default class file

Class

Notifications_Field
Base class for Notifications fields

Code

function get_query_condition($alias = 'f') {
  if (isset($this->value)) {
    return $this
      ->get_value_condition($this->value, $alias);
  }
}