CloneSet427


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11430.983class_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11198
components/com_users/models/user.php
211118
components/com_users/models/user.php
311138
components/com_users/models/user.php
411158
components/com_users/models/user.php
Clone Instance
1
Line Count
11
Source Line
98
Source File
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);
              }


Clone Instance
2
Line Count
11
Source Line
118
Source File
components/com_users/models/user.php

        /**
         * 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);
              }


Clone Instance
3
Line Count
11
Source Line
138
Source File
components/com_users/models/user.php

        /**
         * 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);
              }


Clone Instance
4
Line Count
11
Source Line
158
Source File
components/com_users/models/user.php

        /**
         * 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);
              }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#465d4ea0]]
getResetCompleteForm 
12[[#465d4ea0]]
getResetConfirmForm 
13[[#465d4ea0]]
getResetRequestForm 
14[[#465d4ea0]]
getRemindForm 
21[[#465d4e00]]
'onPrepareUsersResetCompleteForm' 
22[[#465d4e00]]
'onPrepareUsersResetConfirmForm' 
23[[#465d4e00]]
'onPrepareUsersResetRequestForm' 
24[[#465d4e00]]
'onPrepareUsersRemindForm' 
31[[#465d4da0]]
'reset_complete' 
32[[#465d4da0]]
'reset_confirm' 
33[[#465d4da0]]
'reset_request' 
34[[#465d4da0]]
'remind'