my problem is the following: I am writing a login library. This library has a function _validation() and this uses the validation library to validate the data. With using normal validation methods it works just fine, but using a callback function just does not work. It is not called.
Ben böyle diyorum.
$this->CI->form_validation->set_rules('user', 'Username', 'required|callback__check_user');
The functions name is _check_user and it uses the username _check_user($user). The function itself works fine and I can also call it in the class ($this->_check_user('username')) with a working result.
Ben yerine sadece orijinal örneğin bir CI örneği $ this-> CI var bu yüzden ben bir denetleyicisi çalışıyorsun değilim çünkü bir sorun olabilir, tahmin ediyorum bu-> $
Herkes bunu düzeltmek nasıl bir ipucu var mı?
Şimdiden teşekkürler.