Passed
Push — master ( 6209eb...36ba5e )
by Michael
51s queued 14s
created

yogurt_getFieldForm()   F

Complexity

Conditions 43
Paths > 20000

Size

Total Lines 239
Code Lines 186

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 186
c 1
b 0
f 0
dl 0
loc 239
rs 0
cc 43
nc 37200
nop 2

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/**
3
 * Extended User Profile
4
 *
5
 * You may not change or alter any portion of this comment or credits
6
 * of supporting developers from this source code or any supporting source code
7
 * which is considered copyrighted (c) material of the original comment or credit authors.
8
 * This program is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * @copyright       (c) 2000-2016 XOOPS Project (www.xoops.org)
13
 * @license             GNU GPL 2 (http://www.gnu.org/licenses/gpl-2.0.html)
14
 * @package             profile
15
 * @since               2.3.0
16
 * @author              Jan Pedersen
17
 * @author              Taiwen Jiang <[email protected]>
18
 */
19
20
// defined('XOOPS_ROOT_PATH') || exit("XOOPS root path not defined");
21
22
/**
23
 * Get {@link XoopsThemeForm} for adding/editing fields
24
 *
25
 * @param ProfileField $field  {@link ProfileField} object to get edit form for
26
 * @param mixed        $action URL to submit to - or false for $_SERVER['REQUEST_URI']
27
 *
28
 * @return object
29
 */
30
function yogurt_getFieldForm(YogurtField $field, $action = false)
31
{
32
    if ($action === false) {
33
        $action = $_SERVER['REQUEST_URI'];
34
    }
35
    $title = $field->isNew() ? sprintf(_AM_YOGURT_ADD, _AM_YOGURT_FIELD) : sprintf(_AM_YOGURT_EDIT, _AM_YOGURT_FIELD);
36
37
    include_once $GLOBALS['xoops']->path('class/xoopsformloader.php');
38
    $form = new XoopsThemeForm($title, 'form', $action, 'post', true);
39
40
    $form->addElement(new XoopsFormText(_AM_YOGURT_TITLE, 'field_title', 35, 255, $field->getVar('field_title', 'e')));
41
    $form->addElement(new XoopsFormTextArea(_AM_YOGURT_DESCRIPTION, 'field_description', $field->getVar('field_description', 'e')));
42
43
    $fieldcat_id = 0;
44
    if (!$field->isNew()) {
45
        $fieldcat_id = $field->getVar('cat_id');
46
    }
47
    $category_handler = xoops_getModuleHandler('category');
48
    $cat_select       = new XoopsFormSelect(_AM_YOGURT_CATEGORY, 'field_category', $fieldcat_id);
49
    $cat_select->addOption(0, _AM_YOGURT_DEFAULT);
50
    $cat_select->addOptionArray($category_handler->getList());
0 ignored issues
show
Bug introduced by
The method getList() does not exist on XoopsObjectHandler. It seems like you code against a sub-type of XoopsObjectHandler such as XoopsModuleHandler or XoopsImageHandler or XoopsRankHandler or XoopsCommentHandler or XoopsTplsetHandler or XoopsAvatarHandler or XoopsBlockHandler or XoopsImagesetHandler or XoopsPersistableObjectHandler or XoopsImagecategoryHandler. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

50
    $cat_select->addOptionArray($category_handler->/** @scrutinizer ignore-call */ getList());
Loading history...
51
    $form->addElement($cat_select);
52
    $form->addElement(new XoopsFormText(_AM_YOGURT_WEIGHT, 'field_weight', 10, 10, $field->getVar('field_weight', 'e')));
53
    if ($field->getVar('field_config') || $field->isNew()) {
54
        if (!$field->isNew()) {
55
            $form->addElement(new XoopsFormLabel(_AM_YOGURT_NAME, $field->getVar('field_name')));
56
            $form->addElement(new XoopsFormHidden('id', $field->getVar('field_id')));
57
        } else {
58
            $form->addElement(new XoopsFormText(_AM_YOGURT_NAME, 'field_name', 35, 255, $field->getVar('field_name', 'e')));
59
        }
60
61
        //autotext and theme left out of this one as fields of that type should never be changed (valid assumption, I think)
62
        $fieldtypes = array(
63
            'checkbox'     => _AM_YOGURT_CHECKBOX,
64
            'date'         => _AM_YOGURT_DATE,
65
            'datetime'     => _AM_YOGURT_DATETIME,
66
            'longdate'     => _AM_YOGURT_LONGDATE,
67
            'group'        => _AM_YOGURT_GROUP,
68
            'group_multi'  => _AM_YOGURT_GROUPMULTI,
69
            'language'     => _AM_YOGURT_LANGUAGE,
70
            'radio'        => _AM_YOGURT_RADIO,
71
            'select'       => _AM_YOGURT_SELECT,
72
            'select_multi' => _AM_YOGURT_SELECTMULTI,
73
            'textarea'     => _AM_YOGURT_TEXTAREA,
74
            'dhtml'        => _AM_YOGURT_DHTMLTEXTAREA,
75
            'textbox'      => _AM_YOGURT_TEXTBOX,
76
            'timezone'     => _AM_YOGURT_TIMEZONE,
77
            'yesno'        => _AM_YOGURT_YESNO);
78
79
        $element_select = new XoopsFormSelect(_AM_YOGURT_TYPE, 'field_type', $field->getVar('field_type', 'e'));
80
        $element_select->addOptionArray($fieldtypes);
81
82
        $form->addElement($element_select);
83
84
        switch ($field->getVar('field_type')) {
85
            case 'textbox':
86
                $valuetypes = array(
87
                    XOBJ_DTYPE_TXTBOX          => _AM_YOGURT_TXTBOX,
88
                    XOBJ_DTYPE_EMAIL           => _AM_YOGURT_EMAIL,
89
                    XOBJ_DTYPE_INT             => _AM_YOGURT_INT,
90
                    XOBJ_DTYPE_FLOAT           => _AM_YOGURT_FLOAT,
91
                    XOBJ_DTYPE_DECIMAL         => _AM_YOGURT_DECIMAL,
92
                    XOBJ_DTYPE_TXTAREA         => _AM_YOGURT_TXTAREA,
93
                    XOBJ_DTYPE_URL             => _AM_YOGURT_URL,
94
                    XOBJ_DTYPE_OTHER           => _AM_YOGURT_OTHER,
95
                    XOBJ_DTYPE_ARRAY           => _AM_YOGURT_ARRAY,
96
                    XOBJ_DTYPE_UNICODE_ARRAY   => _AM_YOGURT_UNICODE_ARRAY,
97
                    XOBJ_DTYPE_UNICODE_TXTBOX  => _AM_YOGURT_UNICODE_TXTBOX,
98
                    XOBJ_DTYPE_UNICODE_TXTAREA => _AM_YOGURT_UNICODE_TXTAREA,
99
                    XOBJ_DTYPE_UNICODE_EMAIL   => _AM_YOGURT_UNICODE_EMAIL,
100
                    XOBJ_DTYPE_UNICODE_URL     => _AM_YOGURT_UNICODE_URL);
101
102
                $type_select = new XoopsFormSelect(_AM_YOGURT_VALUETYPE, 'field_valuetype', $field->getVar('field_valuetype', 'e'));
103
                $type_select->addOptionArray($valuetypes);
104
                $form->addElement($type_select);
105
                break;
106
107
            case 'select':
108
            case 'radio':
109
                $valuetypes = array(
110
                    XOBJ_DTYPE_TXTBOX          => _AM_YOGURT_TXTBOX,
111
                    XOBJ_DTYPE_EMAIL           => _AM_YOGURT_EMAIL,
112
                    XOBJ_DTYPE_INT             => _AM_YOGURT_INT,
113
                    XOBJ_DTYPE_FLOAT           => _AM_YOGURT_FLOAT,
114
                    XOBJ_DTYPE_DECIMAL         => _AM_YOGURT_DECIMAL,
115
                    XOBJ_DTYPE_TXTAREA         => _AM_YOGURT_TXTAREA,
116
                    XOBJ_DTYPE_URL             => _AM_YOGURT_URL,
117
                    XOBJ_DTYPE_OTHER           => _AM_YOGURT_OTHER,
118
                    XOBJ_DTYPE_ARRAY           => _AM_YOGURT_ARRAY,
119
                    XOBJ_DTYPE_UNICODE_ARRAY   => _AM_YOGURT_UNICODE_ARRAY,
120
                    XOBJ_DTYPE_UNICODE_TXTBOX  => _AM_YOGURT_UNICODE_TXTBOX,
121
                    XOBJ_DTYPE_UNICODE_TXTAREA => _AM_YOGURT_UNICODE_TXTAREA,
122
                    XOBJ_DTYPE_UNICODE_EMAIL   => _AM_YOGURT_UNICODE_EMAIL,
123
                    XOBJ_DTYPE_UNICODE_URL     => _AM_YOGURT_UNICODE_URL);
124
125
                $type_select = new XoopsFormSelect(_AM_YOGURT_VALUETYPE, 'field_valuetype', $field->getVar('field_valuetype', 'e'));
126
                $type_select->addOptionArray($valuetypes);
127
                $form->addElement($type_select);
128
                break;
129
        }
130
131
        //$form->addElement(new XoopsFormRadioYN(_AM_YOGURT_NOTNULL, 'field_notnull', $field->getVar('field_notnull', 'e') ));
132
133
        if ($field->getVar('field_type') === 'select' || $field->getVar('field_type') === 'select_multi' || $field->getVar('field_type') === 'radio' || $field->getVar('field_type') === 'checkbox') {
134
            $options = $field->getVar('field_options');
135
            if (count($options) > 0) {
136
                $remove_options          = new XoopsFormCheckBox(_AM_YOGURT_REMOVEOPTIONS, 'removeOptions');
137
                $remove_options->columns = 3;
138
                asort($options);
139
                foreach (array_keys($options) as $key) {
140
                    $options[$key] .= "[{$key}]";
141
                }
142
                $remove_options->addOptionArray($options);
143
                $form->addElement($remove_options);
144
            }
145
146
            $option_text = "<table  cellspacing='1'><tr><td class='width20'>" . _AM_YOGURT_KEY . '</td><td>' . _AM_YOGURT_VALUE . '</td></tr>';
147
            for ($i = 0; $i < 3; ++$i) {
148
                $option_text .= "<tr><td><input type='text' name='addOption[{$i}][key]' id='addOption[{$i}][key]' size='15' /></td><td><input type='text' name='addOption[{$i}][value]' id='addOption[{$i}][value]' size='35' /></td></tr>";
149
                $option_text .= "<tr height='3px'><td colspan='2'> </td></tr>";
150
            }
151
            $option_text .= '</table>';
152
            $form->addElement(new XoopsFormLabel(_AM_YOGURT_ADDOPTION, $option_text));
153
        }
154
    }
155
156
    if ($field->getVar('field_edit')) {
157
        switch ($field->getVar('field_type')) {
158
            case 'textbox':
159
            case 'textarea':
160
            case 'dhtml':
161
                $form->addElement(new XoopsFormText(_AM_YOGURT_MAXLENGTH, 'field_maxlength', 35, 35, $field->getVar('field_maxlength', 'e')));
162
                $form->addElement(new XoopsFormTextArea(_AM_YOGURT_DEFAULT, 'field_default', $field->getVar('field_default', 'e')));
163
                break;
164
165
            case 'checkbox':
166
            case 'select_multi':
167
                $def_value = $field->getVar('field_default', 'e') != null ? unserialize($field->getVar('field_default', 'n')) : null;
168
                $element   = new XoopsFormSelect(_AM_YOGURT_DEFAULT, 'field_default', $def_value, 8, true);
169
                $options   = $field->getVar('field_options');
170
                asort($options);
171
                // If options do not include an empty element, then add a blank option to prevent any default selection
172
                //                if (!in_array('', array_keys($options))) {
173
                if (!array_key_exists('', $options)) {
174
                    $element->addOption('', _NONE);
175
                }
176
                $element->addOptionArray($options);
177
                $form->addElement($element);
178
                break;
179
180
            case 'select':
181
            case 'radio':
182
                $def_value = $field->getVar('field_default', 'e') != null ? $field->getVar('field_default') : null;
183
                $element   = new XoopsFormSelect(_AM_YOGURT_DEFAULT, 'field_default', $def_value);
184
                $options   = $field->getVar('field_options');
185
                asort($options);
186
                // If options do not include an empty element, then add a blank option to prevent any default selection
187
                //                if (!in_array('', array_keys($options))) {
188
                if (!array_key_exists('', $options)) {
189
                    $element->addOption('', _NONE);
190
                }
191
                $element->addOptionArray($options);
192
                $form->addElement($element);
193
                break;
194
195
            case 'date':
196
                $form->addElement(new XoopsFormTextDateSelect(_AM_YOGURT_DEFAULT, 'field_default', 15, $field->getVar('field_default', 'e')));
197
                break;
198
199
            case 'longdate':
200
                $form->addElement(new XoopsFormTextDateSelect(_AM_YOGURT_DEFAULT, 'field_default', 15, strtotime($field->getVar('field_default', 'e'))));
201
                break;
202
203
            case 'datetime':
204
                $form->addElement(new XoopsFormDateTime(_AM_YOGURT_DEFAULT, 'field_default', 15, $field->getVar('field_default', 'e')));
205
                break;
206
207
            case 'yesno':
208
                $form->addElement(new XoopsFormRadioYN(_AM_YOGURT_DEFAULT, 'field_default', $field->getVar('field_default', 'e')));
209
                break;
210
211
            case 'timezone':
212
                $form->addElement(new XoopsFormSelectTimezone(_AM_YOGURT_DEFAULT, 'field_default', $field->getVar('field_default', 'e')));
213
                break;
214
215
            case 'language':
216
                $form->addElement(new XoopsFormSelectLang(_AM_YOGURT_DEFAULT, 'field_default', $field->getVar('field_default', 'e')));
217
                break;
218
219
            case 'group':
220
                $form->addElement(new XoopsFormSelectGroup(_AM_YOGURT_DEFAULT, 'field_default', true, $field->getVar('field_default', 'e')));
221
                break;
222
223
            case 'group_multi':
224
                $form->addElement(new XoopsFormSelectGroup(_AM_YOGURT_DEFAULT, 'field_default', true, unserialize($field->getVar('field_default', 'n')), 5, true));
225
                break;
226
227
            case 'theme':
228
                $form->addElement(new XoopsFormSelectTheme(_AM_YOGURT_DEFAULT, 'field_default', $field->getVar('field_default', 'e')));
229
                break;
230
231
            case 'autotext':
232
                $form->addElement(new XoopsFormTextArea(_AM_YOGURT_DEFAULT, 'field_default', $field->getVar('field_default', 'e')));
233
                break;
234
        }
235
    }
236
    /* @var XoopsGroupPermHandler $groupperm_handler */
237
    $groupperm_handler = xoops_getHandler('groupperm');
238
    $searchable_types  = array(
239
        'textbox',
240
        'select',
241
        'radio',
242
        'yesno',
243
        'date',
244
        'datetime',
245
        'timezone',
246
        'language');
247
    if (in_array($field->getVar('field_type'), $searchable_types)) {
248
        $search_groups = $groupperm_handler->getGroupIds('profile_search', $field->getVar('field_id'), $GLOBALS['xoopsModule']->getVar('mid'));
249
        $form->addElement(new XoopsFormSelectGroup(_AM_YOGURT_PROF_SEARCH, 'profile_search', true, $search_groups, 5, true));
250
    }
251
    if ($field->getVar('field_edit') || $field->isNew()) {
252
        $editable_groups = array();
253
        if (!$field->isNew()) {
254
            //Load groups
255
            $editable_groups = $groupperm_handler->getGroupIds('profile_edit', $field->getVar('field_id'), $GLOBALS['xoopsModule']->getVar('mid'));
256
        }
257
        $form->addElement(new XoopsFormSelectGroup(_AM_YOGURT_PROF_EDITABLE, 'profile_edit', false, $editable_groups, 5, true));
258
        $form->addElement(new XoopsFormRadioYN(_AM_YOGURT_REQUIRED, 'field_required', $field->getVar('field_required', 'e')));
259
        $regstep_select = new XoopsFormSelect(_AM_YOGURT_PROF_REGISTER, 'step_id', $field->getVar('step_id', 'e'));
260
        $regstep_select->addOption(0, _NO);
261
        $regstep_handler = xoops_getModuleHandler('regstep');
262
        $regstep_select->addOptionArray($regstep_handler->getList());
263
        $form->addElement($regstep_select);
264
    }
265
    $form->addElement(new XoopsFormHidden('op', 'save'));
266
    $form->addElement(new XoopsFormButton('', 'submit', _SUBMIT, 'submit'));
267
268
    return $form;
269
}
270
271
/**
272
 * Get {@link XoopsThemeForm} for registering new users
273
 *
274
 * @param XoopsUser $user
275
 * @param           $profile
276
 * @param XoopsUser $user {@link XoopsUser} to register
277
 * @param int       $step Which step we are at
278
 *
279
 * @internal param \profileRegstep $next_step
280
 * @return object
281
 */
282
function yogurt_getRegisterForm(XoopsUser $user, $profile, $step = null)
283
{
284
    global $opkey; // should be set in register.php
285
    if (empty($opkey)) {
286
        $opkey = 'profile_opname';
287
    }
288
    $next_opname      = 'op' . mt_rand(10000, 99999);
289
    $_SESSION[$opkey] = $next_opname;
290
291
    include_once $GLOBALS['xoops']->path('class/xoopsformloader.php');
292
    if (empty($GLOBALS['xoopsConfigUser'])) {
293
        /* @var XoopsConfigHandler $config_handler */
294
        $config_handler             = xoops_getHandler('config');
295
        $GLOBALS['xoopsConfigUser'] = $config_handler->getConfigsByCat(XOOPS_CONF_USER);
296
    }
297
    $action    = $_SERVER['REQUEST_URI'];
298
    $step_no   = $step['step_no'];
299
    $use_token = $step['step_no'] > 0;// ? true : false;
300
    $reg_form  = new XoopsThemeForm($step['step_name'], 'regform', $action, 'post', $use_token);
301
302
    if ($step['step_desc']) {
303
        $reg_form->addElement(new XoopsFormLabel('', $step['step_desc']));
304
    }
305
306
    if ($step_no == 1) {
307
        //$uname_size = $GLOBALS['xoopsConfigUser']['maxuname'] < 35 ? $GLOBALS['xoopsConfigUser']['maxuname'] : 35;
308
309
        $elements[0][] = array(
0 ignored issues
show
Comprehensibility Best Practice introduced by
$elements was never initialized. Although not strictly required by PHP, it is generally a good practice to add $elements = array(); before regardless.
Loading history...
310
            'element'  => new XoopsFormText(_MD_YOGURT_NICKNAME, 'uname', 35, $GLOBALS['xoopsConfigUser']['maxuname'], $user->getVar('uname', 'e')),
0 ignored issues
show
Bug introduced by
It seems like $user->getVar('uname', 'e') can also be of type array and array; however, parameter $value of XoopsFormText::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

310
            'element'  => new XoopsFormText(_MD_YOGURT_NICKNAME, 'uname', 35, $GLOBALS['xoopsConfigUser']['maxuname'], /** @scrutinizer ignore-type */ $user->getVar('uname', 'e')),
Loading history...
311
            'required' => true);
312
        $weights[0][]  = 0;
0 ignored issues
show
Comprehensibility Best Practice introduced by
$weights was never initialized. Although not strictly required by PHP, it is generally a good practice to add $weights = array(); before regardless.
Loading history...
313
314
        $elements[0][] = array('element' => new XoopsFormText(_MD_YOGURT_EMAILADDRESS, 'email', 35, 255, $user->getVar('email', 'e')), 'required' => true);
315
        $weights[0][]  = 0;
316
317
        $elements[0][] = array('element' => new XoopsFormPassword(_MD_YOGURT_PASSWORD, 'pass', 35, 32, ''), 'required' => true);
318
        $weights[0][]  = 0;
319
320
        $elements[0][] = array('element' => new XoopsFormPassword(_US_VERIFYPASS, 'vpass', 35, 32, ''), 'required' => true);
321
        $weights[0][]  = 0;
322
    }
323
324
    // Dynamic fields
325
    $profile_handler              = xoops_getModuleHandler('profile');
326
    $fields                       = $profile_handler->loadFields();
0 ignored issues
show
Bug introduced by
The method loadFields() does not exist on XoopsObjectHandler. It seems like you code against a sub-type of XoopsObjectHandler such as XoopsPersistableObjectHandler. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

326
    /** @scrutinizer ignore-call */ 
327
    $fields                       = $profile_handler->loadFields();
Loading history...
327
    $_SESSION['profile_required'] = array();
328
    foreach (array_keys($fields) as $i) {
329
        if ($fields[$i]->getVar('step_id') == $step['step_id']) {
330
            $fieldinfo['element'] = $fields[$i]->getEditElement($user, $profile);
331
            //assign and check (=)
332
            if ($fieldinfo['required'] = $fields[$i]->getVar('field_required')) {
333
                $_SESSION['profile_required'][$fields[$i]->getVar('field_name')] = $fields[$i]->getVar('field_title');
334
            }
335
336
            $key              = $fields[$i]->getVar('cat_id');
337
            $elements[$key][] = $fieldinfo;
338
            $weights[$key][]  = $fields[$i]->getVar('field_weight');
339
        }
340
    }
341
    ksort($elements);
342
343
    // Get categories
344
    $cat_handler = xoops_getModuleHandler('category');
345
    $categories  = $cat_handler->getObjects(null, true, false);
0 ignored issues
show
Bug introduced by
The method getObjects() does not exist on XoopsObjectHandler. It seems like you code against a sub-type of said class. However, the method does not exist in XoopsRankHandler or XoUserHandler. Are you sure you never get one of those? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

345
    /** @scrutinizer ignore-call */ 
346
    $categories  = $cat_handler->getObjects(null, true, false);
Loading history...
Unused Code introduced by
The assignment to $categories is dead and can be removed.
Loading history...
346
347
    foreach (array_keys($elements) as $k) {
348
        array_multisort($weights[$k], SORT_ASC, array_keys($elements[$k]), SORT_ASC, $elements[$k]);
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $weights does not seem to be defined for all execution paths leading up to this point.
Loading history...
349
        //$title = isset($categories[$k]) ? $categories[$k]['cat_title'] : _MD_YOGURT_DEFAULT;
350
        //$desc = isset($categories[$k]) ? $categories[$k]['cat_description'] : "";
351
        //$reg_form->insertBreak("<p>{$title}</p>{$desc}");
352
        //$reg_form->addElement(new XoopsFormLabel("<h2>".$title."</h2>", $desc), false);
353
        foreach (array_keys($elements[$k]) as $i) {
354
            $reg_form->addElement($elements[$k][$i]['element'], $elements[$k][$i]['required']);
355
        }
356
    }
357
    //end of Dynamic User fields
358
359
    if ($step_no == 1 && $GLOBALS['xoopsConfigUser']['reg_dispdsclmr'] != 0 && $GLOBALS['xoopsConfigUser']['reg_disclaimer'] != '') {
360
        $disc_tray = new XoopsFormElementTray(_US_DISCLAIMER, '<br>');
361
        $disc_text = new XoopsFormLabel('', "<div class=\"pad5\">" . $GLOBALS['myts']->displayTarea($GLOBALS['xoopsConfigUser']['reg_disclaimer'], 1) . '</div>');
362
        $disc_tray->addElement($disc_text);
363
        $agree_chk = new XoopsFormCheckBox('', 'agree_disc');
364
        $agree_chk->addOption(1, _US_IAGREE);
365
        $disc_tray->addElement($agree_chk);
366
        $reg_form->addElement($disc_tray);
367
    }
368
    global $xoopsModuleConfig;
369
    $useCaptchaAfterStep2 = $xoopsModuleConfig['profileCaptchaAfterStep1'] + 1;
370
371
    if ($step_no <= $useCaptchaAfterStep2) {
372
        $reg_form->addElement(new XoopsFormCaptcha(), true);
373
    }
374
375
    $reg_form->addElement(new XoopsFormHidden($next_opname, 'register'));
376
    $reg_form->addElement(new XoopsFormHidden('uid', $user->getVar('uid')));
0 ignored issues
show
Bug introduced by
It seems like $user->getVar('uid') can also be of type array and array; however, parameter $value of XoopsFormHidden::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

376
    $reg_form->addElement(new XoopsFormHidden('uid', /** @scrutinizer ignore-type */ $user->getVar('uid')));
Loading history...
377
    $reg_form->addElement(new XoopsFormHidden('step', $step_no));
378
    $reg_form->addElement(new XoopsFormButton('', 'submitButton', _SUBMIT, 'submit'));
379
380
    return $reg_form;
381
}
382
383
/**
384
 * Get {@link XoopsThemeForm} for editing a user
385
 *
386
 * @param XoopsUser           $user {@link XoopsUser} to edit
387
 * @param YogurtProfile|XoopsObject|null $profile
388
 * @param bool                $action
389
 *
390
 * @return object
391
 */
392
function yogurt_getUserForm(XoopsUser $user, YogurtProfile $profile = null, $action = false)
393
{
394
    if ($action === false) {
395
        $action = $_SERVER['REQUEST_URI'];
396
    }
397
    if (empty($GLOBALS['xoopsConfigUser'])) {
398
        /* @var XoopsConfigHandler $config_handler */
399
        $config_handler             = xoops_getHandler('config');
400
        $GLOBALS['xoopsConfigUser'] = $config_handler->getConfigsByCat(XOOPS_CONF_USER);
401
    }
402
403
    include_once $GLOBALS['xoops']->path('class/xoopsformloader.php');
404
405
    $title = $user->isNew() ? _AM_YOGURT_ADDUSER : _US_EDITPROFILE;
406
407
    $form = new XoopsThemeForm($title, 'userinfo', $action, 'post', true);
408
    /* @var YogurtProfileHandler $profile_handler */
409
    $profile_handler = xoops_getModuleHandler('profile');
410
    // Dynamic fields
411
    if (!$profile) {
412
        /* @var YogurtProfileHandler $profile_handler */
413
        $profile_handler = xoops_getModuleHandler('profile', 'yogurt');
414
        $profile         = $profile_handler->get($user->getVar('uid'));
415
    }
416
    // Get fields
417
    $fields = $profile_handler->loadFields();
418
    // Get ids of fields that can be edited
419
    /* @var  XoopsGroupPermHandler $gperm_handler */
420
    $gperm_handler   = xoops_getHandler('groupperm');
421
    $editable_fields = $gperm_handler->getItemIds('profile_edit', $GLOBALS['xoopsUser']->getGroups(), $GLOBALS['xoopsModule']->getVar('mid'));
422
423
    if ($user->isNew() || $GLOBALS['xoopsUser']->isAdmin()) {
424
        $elements[0][] = array(
0 ignored issues
show
Comprehensibility Best Practice introduced by
$elements was never initialized. Although not strictly required by PHP, it is generally a good practice to add $elements = array(); before regardless.
Loading history...
425
            'element'  => new XoopsFormText(_MD_YOGURT_NICKNAME, 'uname', 25, $GLOBALS['xoopsUser']->isAdmin() ? 60 : $GLOBALS['xoopsConfigUser']['maxuname'], $user->getVar('uname', 'e')),
0 ignored issues
show
Bug introduced by
It seems like $user->getVar('uname', 'e') can also be of type array and array; however, parameter $value of XoopsFormText::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

425
            'element'  => new XoopsFormText(_MD_YOGURT_NICKNAME, 'uname', 25, $GLOBALS['xoopsUser']->isAdmin() ? 60 : $GLOBALS['xoopsConfigUser']['maxuname'], /** @scrutinizer ignore-type */ $user->getVar('uname', 'e')),
Loading history...
426
            'required' => 1);
427
        $email_text    = new XoopsFormText('', 'email', 30, 60, $user->getVar('email'));
428
    } else {
429
        $elements[0][] = array('element' => new XoopsFormLabel(_MD_YOGURT_NICKNAME, $user->getVar('uname')), 'required' => 0);
0 ignored issues
show
Bug introduced by
It seems like $user->getVar('uname') can also be of type array and array; however, parameter $value of XoopsFormLabel::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

429
        $elements[0][] = array('element' => new XoopsFormLabel(_MD_YOGURT_NICKNAME, /** @scrutinizer ignore-type */ $user->getVar('uname')), 'required' => 0);
Loading history...
430
        $email_text    = new XoopsFormLabel('', $user->getVar('email'));
431
    }
432
    $email_tray = new XoopsFormElementTray(_MD_YOGURT_EMAILADDRESS, '<br>');
433
    $email_tray->addElement($email_text, ($user->isNew() || $GLOBALS['xoopsUser']->isAdmin()) ? 1 : 0);
0 ignored issues
show
Bug introduced by
$user->isNew() || $GLOBA...er']->isAdmin() ? 1 : 0 of type integer is incompatible with the type boolean expected by parameter $required of XoopsFormElementTray::addElement(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

433
    $email_tray->addElement($email_text, /** @scrutinizer ignore-type */ ($user->isNew() || $GLOBALS['xoopsUser']->isAdmin()) ? 1 : 0);
Loading history...
434
    $weights[0][]  = 0;
0 ignored issues
show
Comprehensibility Best Practice introduced by
$weights was never initialized. Although not strictly required by PHP, it is generally a good practice to add $weights = array(); before regardless.
Loading history...
435
    $elements[0][] = array('element' => $email_tray, 'required' => 0);
436
    $weights[0][]  = 0;
437
438
    if ($GLOBALS['xoopsUser']->isAdmin() && $user->getVar('uid') != $GLOBALS['xoopsUser']->getVar('uid')) {
439
        //If the user is an admin and is editing someone else
440
        $pwd_text  = new XoopsFormPassword('', 'password', 10, 32);
441
        $pwd_text2 = new XoopsFormPassword('', 'vpass', 10, 32);
442
        $pwd_tray  = new XoopsFormElementTray(_MD_YOGURT_PASSWORD . '<br>' . _MD_YOGURT_CONFIRMPASSWORD);
443
        $pwd_tray->addElement($pwd_text);
444
        $pwd_tray->addElement($pwd_text2);
445
        $elements[0][] = array('element' => $pwd_tray, 'required' => 0); //cannot set an element tray required
446
        $weights[0][]  = 0;
447
448
        $level_radio = new XoopsFormRadio(_MD_YOGURT_USERLEVEL, 'level', $user->getVar('level'));
0 ignored issues
show
Bug introduced by
It seems like $user->getVar('level') can also be of type array and array; however, parameter $value of XoopsFormRadio::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

448
        $level_radio = new XoopsFormRadio(_MD_YOGURT_USERLEVEL, 'level', /** @scrutinizer ignore-type */ $user->getVar('level'));
Loading history...
449
        $level_radio->addOption(1, _MD_YOGURT_ACTIVE);
450
        $level_radio->addOption(0, _MD_YOGURT_INACTIVE);
451
        //$level_radio->addOption(-1, _MD_YOGURT_DISABLED);
452
        $elements[0][] = array('element' => $level_radio, 'required' => 0);
453
        $weights[0][]  = 0;
454
    }
455
456
    $elements[0][] = array('element' => new XoopsFormHidden('uid', $user->getVar('uid')), 'required' => 0);
0 ignored issues
show
Bug introduced by
It seems like $user->getVar('uid') can also be of type array and array; however, parameter $value of XoopsFormHidden::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

456
    $elements[0][] = array('element' => new XoopsFormHidden('uid', /** @scrutinizer ignore-type */ $user->getVar('uid')), 'required' => 0);
Loading history...
457
    $weights[0][]  = 0;
458
    $elements[0][] = array('element' => new XoopsFormHidden('op', 'save'), 'required' => 0);
459
    $weights[0][]  = 0;
460
461
    $cat_handler    = xoops_getModuleHandler('category');
462
    $categories     = array();
463
    $all_categories = $cat_handler->getObjects(null, true, false);
464
    $count_fields   = count($fields);
465
466
    foreach (array_keys($fields) as $i) {
467
        if (in_array($fields[$i]->getVar('field_id'), $editable_fields)) {
468
            // Set default value for user fields if available
469
            if ($user->isNew()) {
470
                $default = $fields[$i]->getVar('field_default');
471
                if ($default !== '' && $default !== null) {
472
                    $user->setVar($fields[$i]->getVar('field_name'), $default);
473
                }
474
            }
475
476
            if ($profile->getVar($fields[$i]->getVar('field_name'), 'n') === null) {
477
                $default = $fields[$i]->getVar('field_default', 'n');
478
                $profile->setVar($fields[$i]->getVar('field_name'), $default);
479
            }
480
481
            $fieldinfo['element']  = $fields[$i]->getEditElement($user, $profile);
482
            $fieldinfo['required'] = $fields[$i]->getVar('field_required');
483
484
            $key              = @$all_categories[$fields[$i]->getVar('cat_id')]['cat_weight'] * $count_fields + $fields[$i]->getVar('cat_id');
485
            $elements[$key][] = $fieldinfo;
486
            $weights[$key][]  = $fields[$i]->getVar('field_weight');
487
            $categories[$key] = @$all_categories[$fields[$i]->getVar('cat_id')];
488
        }
489
    }
490
491
    if ($GLOBALS['xoopsUser'] && $GLOBALS['xoopsUser']->isAdmin()) {
492
        xoops_loadLanguage('admin', 'profile');
493
        /* @var  XoopsGroupPermHandler $gperm_handler */
494
        $gperm_handler = xoops_getHandler('groupperm');
495
        //If user has admin rights on groups
496
        include_once $GLOBALS['xoops']->path('modules/system/constants.php');
497
        if ($gperm_handler->checkRight('system_admin', XOOPS_SYSTEM_GROUP, $GLOBALS['xoopsUser']->getGroups(), 1)) {
498
            //add group selection
499
            $group_select  = new XoopsFormSelectGroup(_MD_YOGURT_USERGROUPS, 'groups', false, $user->getGroups(), 5, true);
500
            $elements[0][] = array('element' => $group_select, 'required' => 0);
501
            //set as latest;
502
            $weights[0][] = $count_fields + 1;
503
        }
504
    }
505
506
    ksort($elements);
507
    foreach (array_keys($elements) as $k) {
508
        array_multisort($weights[$k], SORT_ASC, array_keys($elements[$k]), SORT_ASC, $elements[$k]);
509
        $title = isset($categories[$k]) ? $categories[$k]['cat_title'] : _MD_YOGURT_DEFAULT;
510
        $desc  = isset($categories[$k]) ? $categories[$k]['cat_description'] : '';
511
        $form->addElement(new XoopsFormLabel("<h3>{$title}</h3>", $desc), false);
512
        foreach (array_keys($elements[$k]) as $i) {
513
            $form->addElement($elements[$k][$i]['element'], $elements[$k][$i]['required']);
514
        }
515
    }
516
517
    $form->addElement(new XoopsFormHidden('uid', $user->getVar('uid')));
518
    $form->addElement(new XoopsFormButton('', 'submit', _MD_YOGURT_SAVECHANGES, 'submit'));
519
520
    return $form;
521
}
522
523
/**
524
 * Get {@link XoopsThemeForm} for editing a step
525
 *
526
 * @param YogurtRegstep|null $step {@link YogurtRegstep} to edit
527
 * @param bool                $action
528
 *
529
 * @return object
530
 */
531
function yogurt_getStepForm(YogurtRegstep $step = null, $action = false)
532
{
533
    if ($action === false) {
534
        $action = $_SERVER['REQUEST_URI'];
0 ignored issues
show
Unused Code introduced by
The assignment to $action is dead and can be removed.
Loading history...
535
    }
536
    if (empty($GLOBALS['xoopsConfigUser'])) {
537
        /* @var XoopsConfigHandler $config_handler */
538
        $config_handler             = xoops_getHandler('config');
539
        $GLOBALS['xoopsConfigUser'] = $config_handler->getConfigsByCat(XOOPS_CONF_USER);
540
    }
541
    include_once $GLOBALS['xoops']->path('class/xoopsformloader.php');
542
543
    $form = new XoopsThemeForm(_AM_YOGURT_STEP, 'stepform', 'step.php', 'post', true);
544
545
    if (!$step->isNew()) {
0 ignored issues
show
Bug introduced by
The method isNew() does not exist on null. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

545
    if (!$step->/** @scrutinizer ignore-call */ isNew()) {

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
546
        $form->addElement(new XoopsFormHidden('id', $step->getVar('step_id')));
0 ignored issues
show
Bug introduced by
It seems like $step->getVar('step_id') can also be of type array and array; however, parameter $value of XoopsFormHidden::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

546
        $form->addElement(new XoopsFormHidden('id', /** @scrutinizer ignore-type */ $step->getVar('step_id')));
Loading history...
547
    }
548
    $form->addElement(new XoopsFormHidden('op', 'save'));
549
    $form->addElement(new XoopsFormText(_AM_YOGURT_STEPNAME, 'step_name', 25, 255, $step->getVar('step_name', 'e')));
0 ignored issues
show
Bug introduced by
It seems like $step->getVar('step_name', 'e') can also be of type array and array; however, parameter $value of XoopsFormText::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

549
    $form->addElement(new XoopsFormText(_AM_YOGURT_STEPNAME, 'step_name', 25, 255, /** @scrutinizer ignore-type */ $step->getVar('step_name', 'e')));
Loading history...
550
    $form->addElement(new XoopsFormText(_AM_YOGURT_STEPINTRO, 'step_desc', 25, 255, $step->getVar('step_desc', 'e')));
551
    $form->addElement(new XoopsFormText(_AM_YOGURT_STEPORDER, 'step_order', 10, 10, $step->getVar('step_order', 'e')));
552
    $form->addElement(new XoopsFormRadioYN(_AM_YOGURT_STEPSAVE, 'step_save', $step->getVar('step_save', 'e')));
0 ignored issues
show
Bug introduced by
It seems like $step->getVar('step_save', 'e') can also be of type array and array; however, parameter $value of XoopsFormRadioYN::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

552
    $form->addElement(new XoopsFormRadioYN(_AM_YOGURT_STEPSAVE, 'step_save', /** @scrutinizer ignore-type */ $step->getVar('step_save', 'e')));
Loading history...
553
    $form->addElement(new XoopsFormButton('', 'submit', _SUBMIT, 'submit'));
554
555
    return $form;
556
}
557