Lines Matching refs:field

187         foreach ($form->_content as $field) {
188 if (!is_array($field)) {
191 $fieldName = $field["name"];
193 // this is not an input field
194 if ($field["type"] == "submit") {
201 if (isset($field["class"])) {
202 $field["class"] = $field["class"] . " " . $classes;
204 $field["class"] = $classes;
206 $newFormContent[] = $field;
212 $passwordText = $field["_text"];
221 $confirmText = $field["_text"];
222 $ConfirmValue = $field["value"];
232 LogUtility::msg("The $tag field name ($fieldName) is unknown", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
311 * Replace the field
314 * between the password and the password check field
317 foreach ($form->_content as $field) {
318 if (!is_array($field)) {
321 $fieldName = $field["name"];
323 // this is not an input field
324 switch ($field["type"]) {
332 if (isset($field["class"])) {
333 $field["class"] = $field["class"] . " " . $classes;
335 $field["class"] = $classes;
337 $field["tabindex"] = "6";
338 $newFormContent[] = $field;
342 if (isset($field["class"])) {
343 $field["class"] = $field["class"] . " " . $classes;
345 $field["class"] = $classes;
347 $field["tabindex"] = "7";
348 $newFormContent[] = $field;
355 $loginText = $field["_text"];
356 $loginValue = $field["value"];
368 $fullNameText = $field["_text"];
369 $fullNameValue = $field["value"];
381 $emailText = $field["_text"];
382 $emailValue = $field["value"];
394 $passwordText = $field["_text"];
406 $passwordCheckText = $field["_text"];
418 $passwordCheckText = $field["_text"];
433 LogUtility::msg("The $tag field name ($fieldName) is unknown", LogUtility::LVL_MSG_ERROR, self::CANONICAL);