';
exit;
}
if (!isset($type)) {
$type='';
}
$level0type = $type;
if ($type=='INDI') {
$record=WT_Person::getInstance($pid);
echo '', $record->getFullName(), ' ';
} elseif ($type=='FAM') {
if (!empty($pid)) {
$record=WT_Family::getInstance($pid);
} else {
$record=WT_Family::getInstance($famid);
}
echo '', $record->getFullName(), ' ';
} elseif ($type=='SOUR') {
$record=WT_Source::getInstance($pid);
echo '', $record->getFullName(), ' ';
}
if (strstr($action, 'addchild')) {
if (empty($famid)) {
echo '', WT_I18N::translate('Add an unlinked person'), '', help_link('edit_add_unlinked_person');
} elseif ($gender=='F') {
echo '', WT_I18N::translate('Add daughter'), '', help_link('edit_add_child');
} elseif ($gender=='M') {
echo '', WT_I18N::translate('Add son'), '', help_link('edit_add_child');
} else {
echo '', WT_I18N::translate('Add child'), '', help_link('edit_add_child');
}
} elseif (strstr($action, 'addspouse')) {
if ($famtag=='WIFE') {
echo '', WT_I18N::translate('Add wife'), '';
} else {
echo '', WT_I18N::translate('Add husband'), '';
}
echo help_link('edit_add_spouse');
} elseif (strstr($action, 'addnewparent')) {
if ($famtag=='WIFE') {
echo '', WT_I18N::translate('Add a new mother'), '';
} else {
echo '', WT_I18N::translate('Add a new father'), '';
}
echo help_link('edit_add_parent');
} elseif (strstr($action, 'addopfchild')) {
echo '', WT_I18N::translate('Add a child to create a one-parent family'), '', help_link('add_opf_child');
}
//------------------------------------------------------------------------------
switch ($action) {
case 'delete':
if (!empty($linenum)) {
if ($linenum===0) {
delete_gedrec($pid, WT_GED_ID);
$success=true;
} else {
// Retrieve the private data
$tmp=new WT_GedcomRecord($gedrec);
list($gedcom, $private_gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
//-- when deleting a media link
//-- $linenum comes is an OBJE and the $mediaid to delete should be set
if ($linenum=='OBJE') {
$newged = remove_subrecord($gedrec, $linenum, $_REQUEST['mediaid']);
} else {
$newged = remove_subline($gedrec, $linenum);
}
if (replace_gedrec($pid, WT_GED_ID, $newged.$private_gedrec, $update_CHAN)) {
$success=true;
}
}
}
break;
//------------------------------------------------------------------------------
//-- echo a form to edit the raw gedcom record in a large textarea
case 'editraw':
// Hide the private data
$tmp=new WT_GedcomRecord($gedrec);
list($gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
echo ' ', WT_I18N::translate('Edit raw GEDCOM record'), '', help_link('edit_edit_raw');
echo '';
echo '';
break;
//------------------------------------------------------------------------------
//-- edit a fact record in a form
case 'edit':
// Hide the private data
$tmp=new WT_GedcomRecord($gedrec);
list($gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
init_calendar_popup();
echo '';
break;
//------------------------------------------------------------------------------
case 'add':
//
// Start of add section...
//
init_calendar_popup();
echo '';
// }
break;
//------------------------------------------------------------------------------
case 'addchild':
print_indi_form('addchildaction', $famid, '', '', 'CHIL', $gender);
break;
//------------------------------------------------------------------------------
case 'addspouse':
print_indi_form('addspouseaction', $famid, '', '', $famtag);
break;
//------------------------------------------------------------------------------
case 'addnewparent':
print_indi_form('addnewparentaction', $famid, '', '', $famtag);
break;
//------------------------------------------------------------------------------
case 'addopfchild':
print_indi_form('addopfchildaction', $famid, '', '', 'CHIL');
break;
//------------------------------------------------------------------------------
case 'addfamlink':
echo '';
break;
//------------------------------------------------------------------------------
case 'linkspouse':
init_calendar_popup();
echo '';
break;
//------------------------------------------------------------------------------
case 'linkfamaction':
// Make sure we have the right ID (f123 vs. F123)
$famid=WT_Family::getInstance($famid)->getXref();
$famrec = find_gedcom_record($famid, WT_GED_ID, true);
if (!empty($famrec)) {
$itag = "FAMC";
if ($famtag=="HUSB" || $famtag=="WIFE") $itag="FAMS";
//-- update the individual record for the person
if (strpos($gedrec, "1 $itag @$famid@")===false) {
switch ($itag) {
case 'FAMC':
if (isset($_REQUEST['PEDI'])) {
$PEDI = $_REQUEST['PEDI'];
} else {
$PEDI='';
}
$gedrec.="\n".WT_Gedcom_Code_Pedi::createNewFamcPedi($PEDI, $famid);
break;
case 'FAMS':
$gedrec.="\n1 FAMS @$famid@";
break;
}
if (replace_gedrec($pid, WT_GED_ID, $gedrec, $update_CHAN)) {
$success=true;
}
}
//-- if it is adding a new child to a family
if ($famtag=="CHIL") {
if (strpos($famrec, "1 $famtag @$pid@")===false) {
$famrec .= "\n1 $famtag @$pid@";
if (replace_gedrec($famid, WT_GED_ID, $famrec, $update_CHAN)) {
$success=true;
}
}
} else {
//-- if it is adding a husband or wife
//-- check if the family already has a HUSB or WIFE
$ct = preg_match("/1 $famtag @(.*)@/", $famrec, $match);
if ($ct>0) {
//-- get the old ID
$spid = trim($match[1]);
//-- only continue if the old husb/wife is not the same as the current one
if ($spid!=$pid) {
//-- change a of the old ids to the new id
$famrec = str_replace("\n1 $famtag @$spid@", "\n1 $famtag @$pid@", $famrec);
if (replace_gedrec($famid, WT_GED_ID, $famrec, $update_CHAN)) {
$success=true;
}
//-- remove the FAMS reference from the old husb/wife
if (!empty($spid)) {
$srec = find_gedcom_record($spid, WT_GED_ID, true);
if ($srec) {
$srec = str_replace("\n1 $itag @$famid@", "", $srec);
if (replace_gedrec($spid, WT_GED_ID, $srec, $update_CHAN)) {
$success=true;
}
}
}
}
} else {
$famrec .= "\n1 $famtag @$pid@";
if (replace_gedrec($famid, WT_GED_ID, $famrec, $update_CHAN)) {
$success=true;
}
}
}
} else {
echo "Family record not found";
}
break;
//------------------------------------------------------------------------------
//-- add new source
case 'addnewsource':
echo '';
?>
0) {
$newgedrec .= "\n1 DATA";
$newgedrec .= "\n2 EVEN ".implode(",", $EVEN);
if (!empty($EVEN_DATE)) $newgedrec .= "\n3 DATE ".$EVEN_DATE;
if (!empty($EVEN_PLAC)) $newgedrec .= "\n3 PLAC ".$EVEN_PLAC;
if (!empty($AGNC)) $newgedrec .= "\n2 AGNC ".$AGNC;
}
if (isset($_REQUEST['ABBR'])) $ABBR = $_REQUEST['ABBR'];
if (isset($_REQUEST['TITL'])) $TITL = $_REQUEST['TITL'];
if (isset($_REQUEST['_HEB'])) $_HEB = $_REQUEST['_HEB'];
if (isset($_REQUEST['ROMN'])) $ROMN = $_REQUEST['ROMN'];
if (isset($_REQUEST['AUTH'])) $AUTH = $_REQUEST['AUTH'];
if (isset($_REQUEST['PUBL'])) $PUBL = $_REQUEST['PUBL'];
if (isset($_REQUEST['REPO'])) $REPO = $_REQUEST['REPO'];
if (isset($_REQUEST['CALN'])) $CALN = $_REQUEST['CALN'];
if (!empty($ABBR)) $newgedrec .= "\n1 ABBR $ABBR";
if (!empty($TITL)) {
$newgedrec .= "\n1 TITL $TITL";
if (!empty($_HEB)) $newgedrec .= "\n2 _HEB $_HEB";
if (!empty($ROMN)) $newgedrec .= "\n2 ROMN $ROMN";
}
if (!empty($AUTH)) $newgedrec .= "\n1 AUTH $AUTH";
if (!empty($PUBL)) {
foreach (preg_split("/\r?\n/", $PUBL) as $k=>$line) {
if ($k==0) {
$newgedrec .= "\n1 PUBL $line";
} else {
$newgedrec .= "\n2 CONT $line";
}
}
}
if (!empty($REPO)) {
$newgedrec .= "\n1 REPO @$REPO@";
if (!empty($CALN)) $newgedrec .= "\n2 CALN $CALN";
}
$xref = append_gedrec($newgedrec, WT_GED_ID);
$link = "source.php?sid=$xref";
if ($xref) {
echo '
', WT_I18N::translate('New source created successfully.'), '
";
}
break;
//------------------------------------------------------------------------------
//-- add new Shared Note census event using GEDFact assistant
case 'addnewnote_assisted':
if (isset($_REQUEST['pid'])) $pid = $_REQUEST['pid'];
global $pid;
?>
privatizeGedcom(WT_USER_ACCESS_LEVEL);
init_calendar_popup();
echo '';
break;
//------------------------------------------------------------------------------
//-- edit a Shared Note
case 'editnote':
// Hide the private data
$tmp=new WT_GedcomRecord($gedrec);
list($gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
?>
';
?>
function check_form(frm) {
if (frm.NAME.value=="") {
alert('');
frm.NAME.focus();
return false;
}
return true;
}
';
?>
$line) {
if ($k==0) {
$newgedrec .= "\n1 ADDR {$line}";
} else {
$newgedrec .= "\n2 CONT {$line}";
}
}
}
if (!empty($PHON)) $newgedrec .= "\n1 PHON $PHON";
if (!empty($FAX)) $newgedrec .= "\n1 FAX $FAX";
if (!empty($EMAIL)) $newgedrec .= "\n1 EMAIL $EMAIL";
if (!empty($WWW)) $newgedrec .= "\n1 WWW $WWW";
$xref = append_gedrec($newgedrec, WT_GED_ID);
$link = "repo.php?rid=$xref";
if ($xref) {
echo '
';
echo "", WT_I18N::translate('Paste the following Repository ID into your editing fields to reference this Repository '), " $xref";
}
break;
//------------------------------------------------------------------------------
//-- get the new incoming raw gedcom record and store it in the file
case 'updateraw':
// Retrieve the private data
$tmp=new WT_GedcomRecord($gedrec);
list(, $private_gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
if (isset($_POST['newgedrec1']) && isset($_POST['newgedrec2'])) {
$newgedrec = $_POST['newgedrec1']."\n".$_POST['newgedrec2'];
if (replace_gedrec($pid, WT_GED_ID, $newgedrec.$private_gedrec, $update_CHAN)) {
$success=true;
}
}
break;
//----------------------------------------------------------------------------------
//-- reconstruct the gedcom from the incoming fields and store it in the file
case 'update':
/* -----------------------------------------------------------------------------
* $pids_array is a text file passed via js from the CENS GEDFact Assistant
* to the hidden field id=\"pids_array\" in the case 'add'.
* The subsequent array ($cens_pids), after exploding this text file,
* is an array of indi id's within the Census Transcription
* If $cens_pids is set, then this allows the array to "copy" the new CENS event
* using the foreach loop to these id's
* If $cens_pids is not set, then the array created is just the current $pid.
* -----------------------------------------------------------------------------
*/
if (isset($_REQUEST['pids_array_add'])) $pids_array = $_REQUEST['pids_array_add'];
if (isset($_REQUEST['pids_array_edit'])) $pids_array = $_REQUEST['pids_array_edit'];
if (isset($_REQUEST['num_note_lines'])) $num_note_lines = $_REQUEST['num_note_lines'];
if (isset($pids_array) && $pids_array!="no_array") {
$cens_pids=explode(', ', $pids_array);
}
if (!isset($cens_pids)) {
$cens_pids = array($pid);
$idnums="";
} else {
$cens_pids = $cens_pids;
$idnums="multi";
}
// Cycle through each individual concerned defined by $cens_pids array.
foreach ($cens_pids as $pid) {
if (isset($pid)) {
$gedrec = find_gedcom_record($pid, WT_GED_ID, true);
} elseif (isset($famid)) {
$gedrec = find_gedcom_record($famid, WT_GED_ID, true);
}
// Retrieve the private data
$tmp=new WT_GedcomRecord($gedrec);
list($gedrec, $private_gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
// If the fact has a DATE or PLAC, then delete any value of Y
if ($text[0]=='Y') {
for ($n=1; $n0) {
if (isset($_REQUEST['folder'])) $folder = $_REQUEST['folder'];
$uploaded_files = array();
if (substr($folder, 0, 1) == "/") $folder = substr($folder, 1);
if (substr($folder, -1, 1) != "/") $folder .= "/";
foreach ($_FILES as $upload) {
if (!empty($upload['tmp_name'])) {
if (!move_uploaded_file($upload['tmp_name'], $MEDIA_DIRECTORY.$folder.basename($upload['name']))) {
$error .= " ".WT_I18N::translate('There was an error uploading your file.')." ".file_upload_error_text($upload['error']);
$uploaded_files[] = "";
} else {
$filename = $MEDIA_DIRECTORY.$folder.basename($upload['name']);
$uploaded_files[] = $MEDIA_DIRECTORY.$folder.basename($upload['name']);
if (!is_dir($MEDIA_DIRECTORY."thumbs/".$folder)) mkdir($MEDIA_DIRECTORY."thumbs/".$folder);
$thumbnail = $MEDIA_DIRECTORY."thumbs/".$folder.basename($upload['name']);
generate_thumbnail($filename, $thumbnail);
if (!empty($error)) {
echo "", $error, "";
}
}
} else {
$uploaded_files[] = "";
}
}
}
$gedlines = explode("\n", trim($gedrec));
//-- for new facts set linenum to number of lines
if (!is_array($linenum)) {
if ($linenum=="new" || $idnums=="multi") {
$linenum = count($gedlines);
}
$newged = "";
for ($i=0; $i<$linenum; $i++) {
$newged .= $gedlines[$i]."\n";
}
//-- for edits get the level from the line
if (isset($gedlines[$linenum])) {
$fields = explode(' ', $gedlines[$linenum]);
$glevel = $fields[0];
$i++;
while (($i$glevel)) {
$i++;
}
}
if (!isset($glevels)) $glevels = array();
if (isset($_REQUEST['NAME'])) $NAME = $_REQUEST['NAME'];
if (isset($_REQUEST['TYPE'])) $TYPE = $_REQUEST['TYPE'];
if (isset($_REQUEST['NPFX'])) $NPFX = $_REQUEST['NPFX'];
if (isset($_REQUEST['GIVN'])) $GIVN = $_REQUEST['GIVN'];
if (isset($_REQUEST['NICK'])) $NICK = $_REQUEST['NICK'];
if (isset($_REQUEST['SPFX'])) $SPFX = $_REQUEST['SPFX'];
if (isset($_REQUEST['SURN'])) $SURN = $_REQUEST['SURN'];
if (isset($_REQUEST['NSFX'])) $NSFX = $_REQUEST['NSFX'];
if (isset($_REQUEST['ROMN'])) $ROMN = $_REQUEST['ROMN'];
if (isset($_REQUEST['FONE'])) $FONE = $_REQUEST['FONE'];
if (isset($_REQUEST['_HEB'])) $_HEB = $_REQUEST['_HEB'];
if (isset($_REQUEST['_AKA'])) $_AKA = $_REQUEST['_AKA'];
if (isset($_REQUEST['_MARNM'])) $_MARNM = $_REQUEST['_MARNM'];
if (isset($_REQUEST['NOTE'])) $NOTE = $_REQUEST['NOTE'];
if (!empty($NAME)) $newged .= "\n1 NAME $NAME";
if (!empty($TYPE)) $newged .= "\n2 TYPE $TYPE";
if (!empty($NPFX)) $newged .= "\n2 NPFX $NPFX";
if (!empty($GIVN)) $newged .= "\n2 GIVN $GIVN";
if (!empty($NICK)) $newged .= "\n2 NICK $NICK";
if (!empty($SPFX)) $newged .= "\n2 SPFX $SPFX";
if (!empty($SURN)) $newged .= "\n2 SURN $SURN";
if (!empty($NSFX)) $newged .= "\n2 NSFX $NSFX";
if (!empty($NOTE)) {
$cmpfunc = create_function('$e', 'return strpos($e,"0 @N") !==0 && strpos($e,"1 CONT") !==0;');
$gedlines = array_filter($gedlines, $cmpfunc);
$tempnote = preg_split('/\r?\n/', trim($NOTE) . "\n"); // make sure only one line ending on the end
$title[] = "0 @$pid@ NOTE " . array_shift($tempnote);
foreach($tempnote as &$line) {
$line = trim("1 CONT " . $line,' ');
}
$gedlines = array_merge($title,$tempnote,$gedlines);
}
//-- Refer to Bug [ 1329644 ] Add Married Name - Wrong Sequence
//-- _HEB/ROMN/FONE have to be before _AKA, even if _AKA exists in input and the others are now added
if (!empty($ROMN)) $newged .= "\n2 ROMN $ROMN";
if (!empty($FONE)) $newged .= "\n2 FONE $FONE";
if (!empty($_HEB)) $newged .= "\n2 _HEB $_HEB";
$newged = handle_updates($newged);
if (!empty($_AKA)) $newged .= "\n2 _AKA $_AKA";
if (!empty($_MARNM)) $newged .= "\n2 _MARNM $_MARNM";
while ($i$glevel)) $i++;
}
if (!isset($glevels)) $glevels = array();
if (isset($_REQUEST['NAME'])) $NAME = $_REQUEST['NAME'];
if (isset($_REQUEST['TYPE'])) $TYPE = $_REQUEST['TYPE'];
if (isset($_REQUEST['NPFX'])) $NPFX = $_REQUEST['NPFX'];
if (isset($_REQUEST['GIVN'])) $GIVN = $_REQUEST['GIVN'];
if (isset($_REQUEST['NICK'])) $NICK = $_REQUEST['NICK'];
if (isset($_REQUEST['SPFX'])) $SPFX = $_REQUEST['SPFX'];
if (isset($_REQUEST['SURN'])) $SURN = $_REQUEST['SURN'];
if (isset($_REQUEST['NSFX'])) $NSFX = $_REQUEST['NSFX'];
if (isset($_REQUEST['ROMN'])) $ROMN = $_REQUEST['ROMN'];
if (isset($_REQUEST['FONE'])) $FONE = $_REQUEST['FONE'];
if (isset($_REQUEST['_HEB'])) $_HEB = $_REQUEST['_HEB'];
if (isset($_REQUEST['_AKA'])) $_AKA = $_REQUEST['_AKA'];
if (isset($_REQUEST['_MARNM'])) $_MARNM = $_REQUEST['_MARNM'];
if (isset($_REQUEST['NOTE'])) $NOTE = $_REQUEST['NOTE'];
if (!empty($NAME)) $newged .= "\n1 NAME $NAME";
if (!empty($TYPE)) $newged .= "\n2 TYPE $TYPE";
if (!empty($NPFX)) $newged .= "\n2 NPFX $NPFX";
if (!empty($GIVN)) $newged .= "\n2 GIVN $GIVN";
if (!empty($NICK)) $newged .= "\n2 NICK $NICK";
if (!empty($SPFX)) $newged .= "\n2 SPFX $SPFX";
if (!empty($SURN)) $newged .= "\n2 SURN $SURN";
if (!empty($NSFX)) $newged .= "\n2 NSFX $NSFX";
if (!empty($NOTE)) {
$cmpfunc = create_function('$e', 'return strpos($e,"0 @N") !==0 && strpos($e,"1 CONT") !==0;');
$gedlines = array_filter($gedlines, $cmpfunc);
$tempnote = preg_split('/\r?\n/', trim($NOTE) . "\n"); // make sure only one line ending on the end
$title[] = "0 @$pid@ NOTE " . array_shift($tempnote);
foreach($tempnote as &$line) {
$line = trim("1 CONT " . $line,' ');
}
$gedlines = array_merge($title,$tempnote,$gedlines);
}
//-- Refer to Bug [ 1329644 ] Add Married Name - Wrong Sequence
//-- _HEB/ROMN/FONE have to be before _AKA, even if _AKA exists in input and the others are now added
if (!empty($ROMN)) $newged .= "\n2 ROMN $ROMN";
if (!empty($FONE)) $newged .= "\n2 FONE $FONE";
if (!empty($_HEB)) $newged .= "\n2 _HEB $_HEB";
if (!empty($_AKA)) $newged .= "\n2 _AKA $_AKA";
if (!empty($_MARNM)) $newged .= "\n2 _MARNM $_MARNM";
$newged = handle_updates($newged);
$current = $editline;
break;
}
}
if (replace_gedrec($pid, WT_GED_ID, $newged.$private_gedrec, $update_CHAN)) {
$success=true;
}
} // end foreach $cens_pids -------------
break;
//------------------------------------------------------------------------------
case 'addchildaction':
splitSOUR(); // separate SOUR record from the rest
$gedrec ="0 @REF@ INDI";
$gedrec.=addNewName();
$gedrec.=addNewSex ();
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FACTS, $matches)) {
foreach ($matches[1] as $match) {
$gedrec.=addNewFact($match);
}
}
if (!empty($famid)) {
if (isset($_REQUEST['PEDI'])) {
$PEDI = $_REQUEST['PEDI'];
} else {
$PEDI='';
}
$gedrec.="\n".WT_Gedcom_Code_Pedi::createNewFamcPedi($PEDI, $famid);
}
if (safe_POST_bool('SOUR_INDI')) {
$gedrec = handle_updates($gedrec);
} else {
$gedrec = updateRest($gedrec);
}
$xref = append_gedrec($gedrec, WT_GED_ID);
$link = "individual.php?pid=$xref";
if ($xref) {
$gedrec = "";
if (!empty($famid)) {
// Insert new child at the right place [ 1686246 ]
$newchild = WT_Person::getInstance($xref);
$gedrec=find_gedcom_record($famid, WT_GED_ID, true);
$family=new WT_Family($gedrec);
$done = false;
foreach ($family->getChildren() as $key=>$child) {
if (WT_Date::Compare($newchild->getEstimatedBirthDate(), $child->getEstimatedBirthDate())<0) {
// new child is older : insert before
$gedrec = str_replace("1 CHIL @".$child->getXref()."@",
"1 CHIL @$xref@\n1 CHIL @".$child->getXref()."@",
$gedrec);
$done = true;
break;
}
}
// new child is the only one
if (count($family->getChildren())<1) {
$gedrec .= "\n1 CHIL @$xref@";
} elseif (!$done) {
// new child is the youngest or undated : insert after
$gedrec = str_replace("\n1 CHIL @".$child->getXref()."@",
"\n1 CHIL @".$child->getXref()."@\n1 CHIL @$xref@",
$gedrec);
}
if (replace_gedrec($famid, WT_GED_ID, $gedrec, $update_CHAN)) {
$success=true;
}
}
}
break;
//------------------------------------------------------------------------------
case 'addspouseaction':
splitSOUR(); // separate SOUR record from the rest
$gedrec ="0 @REF@ INDI";
$gedrec.=addNewName();
$gedrec.=addNewSex ();
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FACTS, $matches)) {
foreach ($matches[1] as $match) {
$gedrec.=addNewFact($match);
}
}
if (safe_POST_bool('SOUR_INDI')) {
$gedrec = handle_updates($gedrec);
} else {
$gedrec = updateRest($gedrec);
}
$xref = append_gedrec($gedrec, WT_GED_ID);
$link = "individual.php?pid=$xref";
$success = true;
if ($famid=="new") {
$famrec = "0 @new@ FAM";
$SEX=safe_POST('SEX', '[MF]', 'U');
if ($SEX=="M") $famtag = "HUSB";
if ($SEX=="F") $famtag = "WIFE";
if ($famtag=="HUSB") {
$famrec .= "\n1 HUSB @$xref@";
$famrec .= "\n1 WIFE @$pid@";
} else {
$famrec .= "\n1 WIFE @$xref@";
$famrec .= "\n1 HUSB @$pid@";
}
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FAMFACTS, $matches)) {
foreach ($matches[1] as $match) {
$famrec.=addNewFact($match);
}
}
if (safe_POST_bool('SOUR_FAM')) {
$famrec = handle_updates($famrec);
} else {
$famrec = updateRest($famrec);
}
$famid = append_gedrec($famrec, WT_GED_ID);
} elseif (!empty($famid)) {
$famrec = find_gedcom_record($famid, WT_GED_ID, true);
if (!empty($famrec)) {
$famrec .= "\n1 $famtag @$xref@";
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FAMFACTS, $matches)) {
foreach ($matches[1] as $match) {
$famrec.=addNewFact($match);
}
}
if (safe_POST_bool('SOUR_FAM')) {
$famrec = handle_updates($famrec);
} else {
$famrec = updateRest($famrec);
}
if (replace_gedrec($famid, WT_GED_ID, $famrec, $update_CHAN)) {
$success=true;
}
}
}
if ((!empty($famid))&&($famid!="new")) {
$gedrec = find_gedcom_record($xref, WT_GED_ID, true) . "\n1 FAMS @$famid@";
if (replace_gedrec($xref, WT_GED_ID, $gedrec, $update_CHAN)) {
$success=true;
}
}
if (!empty($pid)) {
$indirec = find_gedcom_record($pid, WT_GED_ID, true);
if ($indirec) {
$indirec .= "\n1 FAMS @$famid@";
if (replace_gedrec($pid, WT_GED_ID, $indirec, $update_CHAN)) {
$success=true;
}
}
}
break;
//------------------------------------------------------------------------------
case 'linkspouseaction':
splitSOUR(); // separate SOUR record from the rest
if (isset($_REQUEST['spid'])) $spid = $_REQUEST['spid'];
if (!empty($spid)) {
$gedrec = find_gedcom_record($spid, WT_GED_ID, true);
if ($gedrec) {
if ($famid=="new") {
$famrec = "0 @new@ FAM";
$SEX = get_gedcom_value("SEX", 1, $gedrec, '', false);
if ($SEX=="M") $famtag = "HUSB";
if ($SEX=="F") $famtag = "WIFE";
if ($famtag=="HUSB") {
$famrec .= "\n1 HUSB @$spid@";
$famrec .= "\n1 WIFE @$pid@";
} else {
$famrec .= "\n1 WIFE @$spid@";
$famrec .= "\n1 HUSB @$pid@";
}
$famrec.=addNewFact('MARR');
if (safe_POST_bool('SOUR_FAM') || count($tagSOUR)>0) {
// before adding 2 SOUR it needs to add 1 MARR Y first
if (addNewFact('MARR')=='') {
$famrec .= "\n1 MARR Y";
}
$famrec = handle_updates($famrec);
} else {
// before adding level 2 facts it needs to add 1 MARR Y first
if (addNewFact('MARR')=='') {
$famrec .= "\n1 MARR Y";
}
$famrec = updateRest($famrec);
}
$famid = append_gedrec($famrec, WT_GED_ID);
}
if ((!empty($famid))&&($famid!="new")) {
$gedrec .= "\n1 FAMS @$famid@";
if (replace_gedrec($spid, WT_GED_ID, $gedrec, $update_CHAN)) {
$success=true;
}
}
if (!empty($pid)) {
$indirec = find_gedcom_record($pid, WT_GED_ID, true);
if (!empty($indirec)) {
$indirec = trim($indirec) . "\n1 FAMS @$famid@";
if (replace_gedrec($pid, WT_GED_ID, $indirec, $update_CHAN)) {
$success=true;
}
}
}
}
}
break;
//------------------------------------------------------------------------------
case 'addnewparentaction':
splitSOUR(); // separate SOUR record from the rest
$gedrec ="0 @REF@ INDI";
$gedrec.=addNewName();
$gedrec.=addNewSex ();
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FACTS, $matches)) {
foreach ($matches[1] as $match) {
$gedrec.=addNewFact($match);
}
}
if (safe_POST_bool('SOUR_INDI')) {
$gedrec = handle_updates($gedrec);
} else {
$gedrec = updateRest($gedrec);
}
$xref = append_gedrec($gedrec, WT_GED_ID);
$link = "individual.php?pid=$xref";
$success = true;
if ($famid=="new") {
$famrec = "0 @new@ FAM";
if ($famtag=="HUSB") {
$famrec .= "\n1 HUSB @$xref@";
$famrec .= "\n1 CHIL @$pid@";
} else {
$famrec .= "\n1 WIFE @$xref@";
$famrec .= "\n1 CHIL @$pid@";
}
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FAMFACTS, $matches)) {
foreach ($matches[1] as $match) {
$famrec.=addNewFact($match);
}
}
if (safe_POST_bool('SOUR_FAM')) {
$famrec = handle_updates($famrec);
} else {
$famrec = updateRest($famrec);
}
$famid = append_gedrec($famrec, WT_GED_ID);
} elseif (!empty($famid)) {
$famrec = find_gedcom_record($famid, WT_GED_ID, true);
if (!empty($famrec)) {
$famrec .= "\n1 $famtag @$xref@";
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FAMFACTS, $matches)) {
foreach ($matches[1] as $match) {
$famrec.=addNewFact($match);
}
}
if (safe_POST_bool('SOUR_FAM')) {
$famrec = handle_updates($famrec);
} else {
$famrec = updateRest($famrec);
}
if (replace_gedrec($famid, WT_GED_ID, $famrec, $update_CHAN)) {
$success=true;
}
}
}
if (!empty($famid) && $famid!="new") {
$gedrec = find_gedcom_record($xref, WT_GED_ID, true);
$gedrec.= "\n1 FAMS @$famid@";
if (replace_gedrec($xref, WT_GED_ID, $gedrec, $update_CHAN)) {
$success=true;
}
}
if (!empty($pid)) {
$indirec = find_gedcom_record($pid, WT_GED_ID, true);
if ($indirec) {
if (strpos($indirec, "1 FAMC @$famid@")===false) {
$indirec .= "\n1 FAMC @$famid@";
if (replace_gedrec($pid, WT_GED_ID, $indirec, $update_CHAN)) {
$success=true;
}
}
}
}
break;
//------------------------------------------------------------------------------
case 'addopfchildaction':
splitSOUR(); // separate SOUR record from the rest
$newindixref=get_new_xref('INDI');
$newfamxref=get_new_xref('FAM');
$gedrec ="0 @{$newindixref}@ INDI".addNewName().addNewSex ();
if (preg_match_all('/([A-Z0-9_]+)/', $QUICK_REQUIRED_FACTS, $matches)) {
foreach ($matches[1] as $match) {
$gedrec.=addNewFact($match);
}
}
if (isset($_REQUEST['PEDI'])) {
$PEDI = $_REQUEST['PEDI'];
} else {
$PEDI='';
}
$gedrec.="\n".WT_Gedcom_Code_Pedi::createNewFamcPedi($PEDI, $newfamxref);
if (safe_POST_bool('SOUR_INDI')) {
$gedrec=handle_updates($gedrec);
} else {
$gedrec=updateRest($gedrec);
}
$famrec="0 @$newfamxref@ FAM\n1 CHIL @{$newindixref}@";
$person=WT_Person::getInstance($pid);
if ($person->getSex()=='F') {
$famrec.="\n1 WIFE @{$pid}@";
} else {
$famrec.="\n1 HUSB @{$pid}@";
}
$indirec=find_gedcom_record($pid, WT_GED_ID, true);
if ($indirec) {
$indirec.="\n1 FAMS @{$newfamxref}@";
if (replace_gedrec($pid, WT_GED_ID, $indirec, $update_CHAN)) {
$success=true;
}
append_gedrec($gedrec, WT_GED_ID);
append_gedrec($famrec, WT_GED_ID);
}
break;
//------------------------------------------------------------------------------
case 'editname':
// Hide the private data
$tmp=new WT_GedcomRecord($gedrec);
list($gedrec)=$tmp->privatizeGedcom(WT_USER_ACCESS_LEVEL);
$person=WT_Person::getInstance($pid);
$gedlines = explode("\n", trim($gedrec));
$fields = explode(' ', $gedlines[$linenum]);
$glevel = $fields[0];
$i = $linenum+1;
$namerec = $gedlines[$linenum];
while (($i$glevel)) {
$namerec.="\n".$gedlines[$i];
$i++;
}
print_indi_form('update', '', $linenum, $namerec, '', $person->getSex());
break;
//------------------------------------------------------------------------------
case 'addname':
$person=WT_Person::getInstance($pid);
print_indi_form('update', '', 'new', 'NEW', '', $person->getSex());
break;
//------------------------------------------------------------------------------
case 'paste':
$gedrec .= "\n".$WT_SESSION->clipboard[$fact]['factrec'];
if (replace_gedrec($pid, WT_GED_ID, $gedrec, $NO_UPDATE_CHAN)) {
$success=true;
}
break;
//LBox Reorder Media ========================================================
//------------------------------------------------------------------------------
case 'reorder_media': // Sort page using Popup
require_once WT_ROOT.'includes/media_reorder.php';
break;
//------------------------------------------------------------------------------
case 'reset_media_update': // Reset sort using popup
$lines = explode("\n", $gedrec);
$newgedrec = '';
foreach ($lines as $line) {
if (strpos($line, '1 _WT_OBJE_SORT')===false) {
$newgedrec .= $line."\n";
}
}
if (replace_gedrec($pid, WT_GED_ID, $newgedrec, $update_CHAN)) {
$success=true;
}
break;
//------------------------------------------------------------------------------
case 'reorder_media_update': // Update sort using popup
if (isset($_REQUEST['order1'])) $order1 = $_REQUEST['order1'];
$lines = explode("\n", $gedrec);
$newgedrec = "";
foreach ($lines as $line) {
if (strpos($line, '1 _WT_OBJE_SORT')===false) {
$newgedrec .= $line."\n";
}
}
foreach ($order1 as $m_media=>$num) {
$newgedrec .= "\n1 _WT_OBJE_SORT @".$m_media."@";
}
if (replace_gedrec($pid, WT_GED_ID, $newgedrec, $update_CHAN)) {
$success=true;
}
$link = "individual.php?pid=$pid";
break;
//------------------------------------------------------------------------------
case 'al_reset_media_update': // Reset sort using Album Page
$lines = explode("\n", $gedrec);
$newgedrec = "";
foreach ($lines as $line) {
if (strpos($line, "1 _WT_OBJE_SORT")===false) {
$newgedrec .= $line."\n";
}
}
if (replace_gedrec($pid, WT_GED_ID, $newgedrec, $update_CHAN)) {
$success=true;
}
$link = "individual.php?pid=$pid";
break;
//------------------------------------------------------------------------------
case 'al_reorder_media_update': // Update sort using Album Page
if (isset($_REQUEST['order1'])) $order1 = $_REQUEST['order1'];
function SwapArray($Array) {
$Values = array();
while (list($Key, $Val) = each($Array))
$Values[$Val] = $Key;
return $Values;
}
if (isset($_REQUEST['order2'])) $order2 = $_REQUEST['order2'];
$order2 = SwapArray(explode(",", substr($order2, 0, -1)));
$lines = explode("\n", $gedrec);
$newgedrec = "";
foreach ($lines as $line) {
if (strpos($line, "1 _WT_OBJE_SORT")===false) {
$newgedrec .= $line."\n";
}
}
foreach ($order2 as $m_media=>$num) {
$newgedrec .= "\n1 _WT_OBJE_SORT @".$m_media."@";
}
if (replace_gedrec($pid, WT_GED_ID, $newgedrec, $update_CHAN)) {
$success=true;
}
$link = "individual.php?pid=$pid";
break;
//LBox ===================================================
//------------------------------------------------------------------------------
case 'reorder_children':
$controller
->addInlineJavascript('jQuery("#reorder_list").sortable({forceHelperSize: true, forcePlaceholderSize: true, opacity: 0.7, cursor: "move", axis: "y"});')
//-- update the order numbers after drag-n-drop sorting is complete
->addInlineJavascript('jQuery("#reorder_list").bind("sortupdate", function(event, ui) { jQuery("#"+jQuery(this).attr("id")+" input").each( function (index, value) { value.value = index+1; }); });');
echo ' ', WT_I18N::translate('Re-order children'), '', help_link('reorder_children');
?>
getHusband();
$mother = $family->getWife();
$children = $family->getChildren();
if (count($children)>0) {
if (!is_null($father)) {
if ($father->getSex()=="F") {
$father->setLabel(WT_I18N::translate('mother'));
} else {
$father->setLabel(WT_I18N::translate('father'));
}
}
if (!is_null($mother)) {
if ($mother->getSex()=="M") {
$mother->setLabel(WT_I18N::translate('father'));
} else {
$mother->setLabel(WT_I18N::translate('mother'));
}
}
for ($i=0; $igetSex()=="M") {
$children[$i]->setLabel(WT_I18N::translate('son'));
} elseif ($children[$i]->getSex()=="F") {
$children[$i]->setLabel(WT_I18N::translate('daughter'));
} else {
$children[$i]->setLabel(WT_I18N::translate('child'));
}
}
}
} else {
if (!is_null($father)) {
if ($father->getSex()=="F") {
$father->setLabel(WT_I18N::translate('wife'));
} elseif ($father->getSex()=="M") {
$father->setLabel(WT_I18N::translate('husband'));
} else {
$father->setLabel(WT_I18N::translate('spouse'));
}
}
if (!is_null($mother)) {
if ($mother->getSex()=="F") {
$mother->setLabel(WT_I18N::translate('wife'));
} elseif ($mother->getSex()=="M") {
$mother->setLabel(WT_I18N::translate('husband'));
} else {
$father->setLabel(WT_I18N::translate('spouse'));
}
}
}
echo ''; ?>
For each member in the family, you can use the Change link to choose a different person to fill that role in the family. You can also use the Remove link to remove that person from the family.
When you have finished changing the family members, click the Save button to save the changes.'); ?>
getHusband();
$mother = $family->getWife();
$children = $family->getChildren();
$updated = false;
//-- add the new father link
if (isset($_REQUEST['HUSB'])) $HUSB = $_REQUEST['HUSB'];
if (!empty($HUSB) && (is_null($father) || $father->getXref()!=$HUSB)) {
if (strstr($gedrec, "1 HUSB")!==false) {
$gedrec = preg_replace("/1 HUSB @.*@/", "1 HUSB @$HUSB@", $gedrec);
} else {
$gedrec .= "\n1 HUSB @$HUSB@";
}
$indirec = find_gedcom_record($HUSB, WT_GED_ID, true);
if (!empty($indirec) && (strpos($indirec, "1 FAMS @$famid@")===false)) {
$indirec .= "\n1 FAMS @$famid@";
replace_gedrec($HUSB, WT_GED_ID, $indirec, $update_CHAN);
}
$updated = true;
}
//-- remove the father link
if (empty($HUSB)) {
$pos1 = strpos($gedrec, "1 HUSB @");
if ($pos1!==false) {
$pos2 = strpos($gedrec, "\n1", $pos1+5);
if ($pos2===false) {
$pos2 = strlen($gedrec);
} else {
$pos2++;
}
$gedrec = substr($gedrec, 0, $pos1) . substr($gedrec, $pos2);
}
$updated = true;
}
//-- remove the FAMS link from the old father
if (!is_null($father) && $father->getXref()!=$HUSB) {
$indirec = find_gedcom_record($father->getXref(), WT_GED_ID, true);
$pos1 = strpos($indirec, "1 FAMS @$famid@");
if ($pos1!==false) {
$pos2 = strpos($indirec, "\n1", $pos1+5);
if ($pos2===false) {
$pos2 = strlen($indirec);
} else {
$pos2++;
}
$indirec = substr($indirec, 0, $pos1) . substr($indirec, $pos2);
replace_gedrec($father->getXref(), WT_GED_ID, $indirec, $update_CHAN);
}
}
//-- add the new mother link
if (isset($_REQUEST['WIFE'])) $WIFE = $_REQUEST['WIFE'];
if (!empty($WIFE) && (is_null($mother) || $mother->getXref()!=$WIFE)) {
if (strstr($gedrec, "1 WIFE")!==false) {
$gedrec = preg_replace("/1 WIFE @.*@/", "1 WIFE @$WIFE@", $gedrec);
} else {
$gedrec .= "\n1 WIFE @$WIFE@";
}
$indirec = find_gedcom_record($WIFE, WT_GED_ID, true);
if (!empty($indirec) && (strpos($indirec, "1 FAMS @$famid@")===false)) {
$indirec .= "\n1 FAMS @$famid@";
replace_gedrec($WIFE, WT_GED_ID, $indirec, $update_CHAN);
}
$updated = true;
}
//-- remove the father link
if (empty($WIFE)) {
$pos1 = strpos($gedrec, "1 WIFE @");
if ($pos1!==false) {
$pos2 = strpos($gedrec, "\n1", $pos1+5);
if ($pos2===false) {
$pos2 = strlen($gedrec);
} else {
$pos2++;
}
$gedrec = substr($gedrec, 0, $pos1) . substr($gedrec, $pos2);
}
$updated = true;
}
//-- remove the FAMS link from the old father
if (!is_null($mother) && $mother->getXref()!=$WIFE) {
$indirec = find_gedcom_record($mother->getXref(), WT_GED_ID, true);
$pos1 = strpos($indirec, "1 FAMS @$famid@");
if ($pos1!==false) {
$pos2 = strpos($indirec, "\n1", $pos1+5);
if ($pos2===false) {
$pos2 = strlen($indirec);
} else {
$pos2++;
}
$indirec = substr($indirec, 0, $pos1) . substr($indirec, $pos2);
replace_gedrec($mother->getXref(), WT_GED_ID, $indirec, $update_CHAN);
}
}
//-- update the children
$i=0;
$var = "CHIL".$i;
$newchildren = array();
while (isset($_REQUEST[$var])) {
$CHIL = $_REQUEST[$var];
if (!empty($CHIL)) {
$newchildren[] = $CHIL;
if (strpos($gedrec, "1 CHIL @$CHIL@")===false) {
$gedrec .= "\n1 CHIL @$CHIL@";
$updated = true;
$indirec = find_gedcom_record($CHIL, WT_GED_ID, true);
if (!empty($indirec) && (strpos($indirec, "1 FAMC @$famid@")===false)) {
$indirec .= "\n1 FAMC @$famid@";
replace_gedrec($CHIL, WT_GED_ID, $indirec, $update_CHAN);
}
}
}
$i++;
$var = "CHIL".$i;
}
//-- remove the old children
foreach ($children as $key=>$child) {
if (!is_null($child)) {
if (!in_array($child->getXref(), $newchildren)) {
//-- remove the CHIL link from the family record
$pos1 = strpos($gedrec, "1 CHIL @".$child->getXref()."@");
if ($pos1!==false) {
$pos2 = strpos($gedrec, "\n1", $pos1+5);
if ($pos2===false) {
$pos2 = strlen($gedrec);
} else {
$pos2++;
}
$gedrec = substr($gedrec, 0, $pos1) . substr($gedrec, $pos2);
$updated = true;
}
//-- remove the FAMC link from the child record
$indirec = find_gedcom_record($child->getXref(), WT_GED_ID, true);
$pos1 = strpos($indirec, "1 FAMC @$famid@");
if ($pos1!==false) {
$pos2 = strpos($indirec, "\n1", $pos1+5);
if ($pos2===false) {
$pos2 = strlen($indirec);
} else {
$pos2++;
}
$indirec = substr($indirec, 0, $pos1) . substr($indirec, $pos2);
replace_gedrec($child->getXref(), WT_GED_ID, $indirec, $update_CHAN);
}
}
}
}
if ($updated) {
replace_gedrec($famid, WT_GED_ID, $gedrec, $update_CHAN);
$success = true;
}
break;
//------------------------------------------------------------------------------
case 'reorder_update':
if (isset($_REQUEST['order'])) $order = $_REQUEST['order'];
asort($order);
reset($order);
$newgedrec = $gedrec;
foreach ($order as $child=>$num) {
// move each child subrecord to the bottom, in the order specified
$subrec = get_sub_record(1, '1 CHIL @'.$child.'@', $gedrec);
$subrec = trim($subrec, "\n");
$newgedrec = str_replace($subrec, '', $newgedrec);
$newgedrec .= "\n".$subrec."\n";
}
if (replace_gedrec($pid, WT_GED_ID, $newgedrec, $update_CHAN)) {
$success=true;
}
break;
//------------------------------------------------------------------------------
case 'reorder_fams':
$controller
->addInlineJavascript('jQuery("#reorder_list").sortable({forceHelperSize: true, forcePlaceholderSize: true, opacity: 0.7, cursor: "move", axis: "y"});')
//-- update the order numbers after drag-n-drop sorting is complete
->addInlineJavascript('jQuery("#reorder_list").bind("sortupdate", function(event, ui) { jQuery("#"+jQuery(this).attr("id")+" input").each( function (index, value) { value.value = index+1; }); });');
echo " ", WT_I18N::translate('Reorder families'), "", help_link('reorder_families');
?>
$num) {
$newgedrec .= "\n1 FAMS @".$famid."@";
}
if (replace_gedrec($pid, WT_GED_ID, $newgedrec, $update_CHAN)) {
$success=true;
}
break;
}
// Redirect to new record, if requested
if (isset($_REQUEST['goto'])) {
$goto = $_REQUEST['goto'];
}
if (isset($_REQUEST['link'])) {
$link = $_REQUEST['link'];
}
if (empty($goto) || empty($link)) {
$link='';
}
// autoclose window when update successful unless debug on
if ($success && !WT_DEBUG) {
$controller->addInlineJavascript('closePopupAndReloadParent("'.$link.'");');
} else {
echo '