Example #1
0
 function ajaxRegister($server, $form)
 {
     if (!$this->validateServer($server)) {
         return;
     }
     $s = new Set();
     $s->setTo($server)->setData($form)->request();
 }
Example #2
0
 function ajaxRegister($form)
 {
     $s = new Set();
     $s->setData($form)->request();
 }
Example #3
0
 function ajaxRegister($form)
 {
     if (isset($form->re_password) && $form->re_password->value != $form->password->value) {
         Notification::append(null, $this->__('account.password_not_same'));
         return;
     }
     $s = new Set();
     $s->setData($form)->request();
 }