예제 #1
0
파일: Validator73.php 프로젝트: bmdevel/bav
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     if ($this->account[2] == 9) {
         $this->validators = $this->exceptionValidators;
     } else {
         $this->validators = $this->defaultValidators;
     }
 }
예제 #2
0
파일: Validator80.php 프로젝트: bmdevel/bav
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     $this->validators = $this->account[2] == 9 ? $this->exceptionValidators : $this->defaultValidators;
 }
예제 #3
0
파일: Validator85.php 프로젝트: bmdevel/bav
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     $this->validators = substr($this->account, 2, 2) == 99 ? $this->exceptionValidators : $this->defaultValidators;
 }
예제 #4
0
파일: Validator68.php 프로젝트: bmdevel/bav
 protected function init($account)
 {
     parent::init($account);
     // Die Kontonummern [..] enthalten keine führenden Nullen.
     $this->account = ltrim($this->account, "0");
 }
예제 #5
0
파일: Validator90.php 프로젝트: bmdevel/bav
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     $this->validators = $this->account[2] == 9 ? array($this->modeF) : $this->defaultValidators;
 }