Example #1
0
File: Poll.php Project: roojs/pear
 function __construct($type, $opts, $copts)
 {
     $this->type = $type;
     $op = false;
     if (isset($opts['@op'])) {
         $op = $opts['@op'];
         unset($opts['@op']);
     }
     parent::__construct('poll', $type, $opts, $copts);
     if ($op) {
         $this->setOp($op);
     }
 }
Example #2
0
 function __construct($type, $opts, $copts)
 {
     //                    print_r($opts);
     //                    print_r($copts);
     $op = false;
     if (isset($opts['@op'])) {
         $op = $opts['@op'];
         unset($opts['@op']);
     }
     parent::__construct('transfer', $type, $opts, $copts);
     if ($op) {
         $this->setOp($op);
     }
 }
Example #3
0
 function __construct()
 {
     parent::__construct('login');
     $this->clID = $this->createElement('clID');
     $this->command->appendChild($this->clID);
     $this->pw = $this->createElement('pw');
     $this->command->appendChild($this->pw);
     $this->options = $this->createElement('options');
     $this->command->appendChild($this->options);
     $this->eppVersion = $this->createElement('version');
     $this->options->appendChild($this->eppVersion);
     $this->eppLang = $this->createElement('lang');
     $this->options->appendChild($this->eppLang);
     $this->svcs = $this->createElement('svcs');
     $this->command->appendChild($this->svcs);
 }
Example #4
0
 function __construct()
 {
     parent::__construct('poll', '');
 }
Example #5
0
 function __construct($type)
 {
     $this->type = $type;
     parent::__construct('update', $type);
 }
Example #6
0
File: Renew.php Project: roojs/pear
 function __construct($type, $opts, $copts)
 {
     parent::__construct('renew', $type, $opts, $copts);
 }
Example #7
0
 function __construct($type, $opts, $copts)
 {
     $this->type = $type;
     parent::__construct('create', $type, $opts, $copts);
 }
Example #8
0
 function __construct($type)
 {
     parent::__construct('transfer', $type);
 }
Example #9
0
 function __construct($type)
 {
     parent::__construct('renew', $type);
 }
Example #10
0
 function __construct($type)
 {
     parent::__construct('info', $type);
 }
Example #11
0
File: Check.php Project: roojs/pear
 function __construct($type, $opts, $copts)
 {
     parent::__construct('check', $type, $opts, $copts);
 }
Example #12
0
 function __construct()
 {
     parent::__construct('logout');
 }
Example #13
0
 function __construct($params = array())
 {
     parent::__construct('logout');
     $this->addCommandParams($params);
 }
Example #14
0
 function __construct($type)
 {
     parent::__construct('check', $type);
 }