Event_Dispatcher::__construct PHP Méthode

__construct() public méthode

Please use {@link getInstance()} instead.
public __construct ( $name )
    public function __construct($name)
    {
        $this->_name = $name;
        $this->_notificationClass = $GLOBALS['_Event_Dispatcher']['NotificationClass'];
    }

Usage Example

 /**
  * PHP4 constructor
  *
  * Please use {@link getInstance()} instead.
  *
  * @access  private
  * @param   string      Name of the notification dispatcher.
  */
 function Event_Dispatcher($name)
 {
     Event_Dispatcher::__construct($name);
 }