Community Auth Password Recovery Validation Variables |
I'm using Community Auth in my CI project and am now trying to implement the forgotten password methods. After inspecting the Examples/recover Examples/recovery_verification methods I can create a recovery link and change the password. I am however at a loss how certain validation variables are being passed to the choose_password_form.php view.
For example, in the recovery_verification function data is being passed to choose_password_form.php via this line of code: Code: echo $this->load->view( 'examples/choose_password_form', $view_data, TRUE ); I assume all the validation variables must be contained in $vew_data. However, I cannot determine from the recovery_verification function (or anywhere in the CA code), where the following variables are being generated:
I'm really at a loss about where these variables are being generated and how I can access them in the controller. Thanks for any insight. |
Messages In This Thread |
Community Auth Password Recovery Validation Variables - by escaperadius - 01-14-2017, 05:35 PM
RE: Community Auth Password Recovery Validation Variables - by skunkbad - 01-14-2017, 06:19 PM
RE: Community Auth Password Recovery Validation Variables - by escaperadius - 01-15-2017, 07:18 AM
|