Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 4 | 3 | 0.983 | class_member |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 98 | components/com_users/models/user.php |
2 | 11 | 118 | components/com_users/models/user.php |
3 | 11 | 138 | components/com_users/models/user.php |
4 | 11 | 158 | components/com_users/models/user.php |
| ||||
/** * Method to get the username remind request form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ function &getRemindForm() { // Set the form loading options. $options= array( 'array' => TRUE, 'event' => 'onPrepareUsersRemindForm', 'group' => 'users' ); // Get the form. return $this->getForm('remind', $options); } |
| ||||
/** * Method to get the password reset request form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ function &getResetRequestForm() { // Set the form loading options. $options= array( 'array' => TRUE, 'event' => 'onPrepareUsersResetRequestForm', 'group' => 'users' ); // Get the form. return $this->getForm('reset_request', $options); } |
| ||||
/** * Method to get the password reset confirm form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ function &getResetConfirmForm() { // Set the form loading options. $options= array( 'array' => TRUE, 'event' => 'onPrepareUsersResetConfirmForm', 'group' => 'users' ); // Get the form. return $this->getForm('reset_confirm', $options); } |
| ||||
/** * Method to get the password reset complete form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ function &getResetCompleteForm() { // Set the form loading options. $options= array( 'array' => TRUE, 'event' => 'onPrepareUsersResetCompleteForm', 'group' => 'users' ); // Get the form. return $this->getForm('reset_complete', $options); } |
| |||
/** * Method to get the password reset complete form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ /** * Method to get the password reset confirm form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ /** * Method to get the password reset request form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ /** * Method to get the username remind request form. * * @access public * @return object JForm object on success, JException on failure. * @since 1.0 */ function & [[#variable465d4ea0]]() { // Set the form loading options. $options=array( 'array' => TRUE, 'event' => [[#variable465d4e00]], 'group' => 'users' ); // Get the form. return $this->getForm( [[#variable465d4da0]],$options); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#465d4ea0]] | getResetCompleteForm |
1 | 2 | [[#465d4ea0]] | getResetConfirmForm |
1 | 3 | [[#465d4ea0]] | getResetRequestForm |
1 | 4 | [[#465d4ea0]] | getRemindForm |
2 | 1 | [[#465d4e00]] | 'onPrepareUsersResetCompleteForm' |
2 | 2 | [[#465d4e00]] | 'onPrepareUsersResetConfirmForm' |
2 | 3 | [[#465d4e00]] | 'onPrepareUsersResetRequestForm' |
2 | 4 | [[#465d4e00]] | 'onPrepareUsersRemindForm' |
3 | 1 | [[#465d4da0]] | 'reset_complete' |
3 | 2 | [[#465d4da0]] | 'reset_confirm' |
3 | 3 | [[#465d4da0]] | 'reset_request' |
3 | 4 | [[#465d4da0]] | 'remind' |