getLabel($controller->getField($i)); ?>
|
getField($i); // Get this field’s name and the search criterion
$currentField = substr($currentFieldSearch, 0, strrpos($currentFieldSearch, ':')); // Get the actual field name
?>
getField($i), -4) == 'PLAC' ? 'data-autocomplete-type="PLAC"' : ''; ?>>
0) { ?>
0) {
?>
|
4) {
$j = $fct;
// Get the current options for Father’s and Mother’s name searches
$fatherGivnOption = 'SDX';
$fatherSurnOption = 'SDX';
$motherGivnOption = 'SDX';
$motherSurnOption = 'SDX';
for ($k = 0; $k < $fct; $k++) {
$searchField = $controller->getField($k);
$searchOption = substr($searchField, 20); // Assume we have something like "FAMC:HUSB:NAME:GIVN:foo"
switch (substr($searchField, 0, 20)) {
case 'FAMC:HUSB:NAME:GIVN:':
$fatherGivnOption = $searchOption;
break;
case 'FAMC:HUSB:NAME:SURN:':
$fatherSurnOption = $searchOption;
break;
case 'FAMC:WIFE:NAME:GIVN:':
$motherGivnOption = $searchOption;
break;
case 'FAMC:WIFE:NAME:SURN:':
$motherSurnOption = $searchOption;
break;
}
}
?>