Ejemplo n.º 1
0
 function __construct($lat = "", $long = "", $msg = "")
 {
     parent::__construct();
     $this->setLatitude($lat);
     $this->setLongitude($long);
     $this->_msg = $msg;
 }
Ejemplo n.º 2
0
 function __construct($msg, $dest = "NOBODY")
 {
     parent::__construct();
     $this->_msg = $msg;
     $this->_dest = $dest;
     $this->setCode(":");
     $this->setMaximumTransmissions(5);
     $this->setRetryInterval(40);
     $this->setAckCode(rand(0, 999));
 }
Ejemplo n.º 3
0
 function __construct($lat, $long, $label, $symbol, $status)
 {
     parent::__construct();
     $this->setLatitude($lat);
     $this->setLongitude($long);
     $this->_label = $label;
     $this->_symbol = $symbol;
     $this->_status = $status;
     $this->setLive();
     $this->setCode(")");
 }