You are here

public function Notifications_Subscription::__get in Notifications 6.4

Magic method, get protected properties

File

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

Class

Notifications_Subscription
Message destination class

Code

public function __get($name) {
  switch ($name) {
    case 'fields':
      return $this
        ->get_conditions();
      break;
  }
}