예제 #1
0
파일: Account.php 프로젝트: Trim/movim
 function ajaxRegister($server, $form)
 {
     if (!$this->validateServer($server)) {
         return;
     }
     $s = new Set();
     $s->setTo($server)->setData($form)->request();
 }
예제 #2
0
파일: AccountNext.php 프로젝트: vijo/movim
 function ajaxRegister($form)
 {
     $s = new Set();
     $s->setData($form)->request();
 }
예제 #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();
 }