Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 60014 программистов и 4245 роботов. Сейчас ищут 1296 программистов ...
Auth::setAllowLogin()
Вернуться к: Auth
Auth::setAllowLogin()
Auth::setAllowLogin() – Controls if the user will be allowed to login. Turned on by default
Synopsis
void Auth::setAllowLogin ( bool $allowLogin = true )
Controls if auth will process the post variables and attempt to login the user from those pages. For better security of your application it is recomended to disable login in all pages except your login page.
Parameter
- boolean $allowLogin
-
If you want to allow login set this to TRUE otherwise set it to FALSE.
Note
This function can not be called statically.
This method is available since 1.3.0
Вернуться к: Auth