Exemplo n.º 1
0
Arquivo: Poll.php Projeto: 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);
     }
 }
Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
 }
Exemplo n.º 4
0
 function __construct()
 {
     parent::__construct('poll', '');
 }
Exemplo n.º 5
0
 function __construct($type)
 {
     $this->type = $type;
     parent::__construct('update', $type);
 }
Exemplo n.º 6
0
Arquivo: Renew.php Projeto: roojs/pear
 function __construct($type, $opts, $copts)
 {
     parent::__construct('renew', $type, $opts, $copts);
 }
Exemplo n.º 7
0
 function __construct($type, $opts, $copts)
 {
     $this->type = $type;
     parent::__construct('create', $type, $opts, $copts);
 }
Exemplo n.º 8
0
 function __construct($type)
 {
     parent::__construct('transfer', $type);
 }
Exemplo n.º 9
0
 function __construct($type)
 {
     parent::__construct('renew', $type);
 }
Exemplo n.º 10
0
 function __construct($type)
 {
     parent::__construct('info', $type);
 }
Exemplo n.º 11
0
Arquivo: Check.php Projeto: roojs/pear
 function __construct($type, $opts, $copts)
 {
     parent::__construct('check', $type, $opts, $copts);
 }
Exemplo n.º 12
0
 function __construct()
 {
     parent::__construct('logout');
 }
Exemplo n.º 13
0
 function __construct($params = array())
 {
     parent::__construct('logout');
     $this->addCommandParams($params);
 }
Exemplo n.º 14
0
 function __construct($type)
 {
     parent::__construct('check', $type);
 }