예제 #1
0
파일: Poll.php 프로젝트: 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);
     }
 }
예제 #2
0
파일: Transfer.php 프로젝트: roojs/pear
 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);
     }
 }
예제 #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);
 }
예제 #4
0
파일: Poll.php 프로젝트: anexia-it/php-epp
 function __construct()
 {
     parent::__construct('poll', '');
 }
예제 #5
0
 function __construct($type)
 {
     $this->type = $type;
     parent::__construct('update', $type);
 }
예제 #6
0
파일: Renew.php 프로젝트: roojs/pear
 function __construct($type, $opts, $copts)
 {
     parent::__construct('renew', $type, $opts, $copts);
 }
예제 #7
0
파일: Create.php 프로젝트: roojs/pear
 function __construct($type, $opts, $copts)
 {
     $this->type = $type;
     parent::__construct('create', $type, $opts, $copts);
 }
예제 #8
0
 function __construct($type)
 {
     parent::__construct('transfer', $type);
 }
예제 #9
0
 function __construct($type)
 {
     parent::__construct('renew', $type);
 }
예제 #10
0
 function __construct($type)
 {
     parent::__construct('info', $type);
 }
예제 #11
0
파일: Check.php 프로젝트: roojs/pear
 function __construct($type, $opts, $copts)
 {
     parent::__construct('check', $type, $opts, $copts);
 }
예제 #12
0
 function __construct()
 {
     parent::__construct('logout');
 }
예제 #13
0
파일: Logout.php 프로젝트: roojs/pear
 function __construct($params = array())
 {
     parent::__construct('logout');
     $this->addCommandParams($params);
 }
예제 #14
0
 function __construct($type)
 {
     parent::__construct('check', $type);
 }