You are here

public function Messaging_Send_Method::__get in Messaging 6.3

Magic function, getting non existent properties

File

classes/messaging_method.class.inc, line 265
Drupal Messaging Framework - Send_Method class file

Class

Messaging_Send_Method
Sending method, implements all specific method functionality

Code

public function __get($name) {
  if (isset($this->info[$name])) {
    return $this->info[$name];
  }
}