diff options
| author | fisharebest <fisharebest@gmail.com> | 2011-01-03 09:55:50 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2011-01-03 09:55:50 +0000 |
| commit | 6561824fba1d5abf70f227b33b35ca0d6c68d0a2 (patch) | |
| tree | e280de40d7ddeeb835a5019914512012c2fa5dbb | |
| parent | a253e5305b52b30c8aa3988e4cf421cd3becb833 (diff) | |
| download | webtrees-6561824fba1d5abf70f227b33b35ca0d6c68d0a2.tar.gz webtrees-6561824fba1d5abf70f227b33b35ca0d6c68d0a2.tar.bz2 webtrees-6561824fba1d5abf70f227b33b35ca0d6c68d0a2.zip | |
Minor tidy up. Use Objects instead of XREFs and raw gedcom
| -rw-r--r-- | edit_interface.php | 42 |
1 files changed, 3 insertions, 39 deletions
diff --git a/edit_interface.php b/edit_interface.php index 57fdb28cfa..07579ba22e 100644 --- a/edit_interface.php +++ b/edit_interface.php @@ -147,42 +147,6 @@ echo WT_JS_END; $disp = false; $success = false; -/** -* Check if the given gedcom record has any RESN editing restrictions -* This is used to prevent raw editing and deletion of records that are locked -* @param string $gedrec -* @return boolean -*/ -function checkFactEdit($gedrec) { - if (WT_USER_GEDCOM_ADMIN) { - return true; - } - - $ct = preg_match("/2 RESN ((privacy)|(locked))/i", $gedrec, $match); - if ($ct > 0) { - $match[1] = strtolower(trim($match[1])); - - $gt = preg_match("/0 @(.+)@ (.+)/", $gedrec, $gmatch); - if ($gt > 0) { - $gid = trim($gmatch[1]); - $type = trim($gmatch[2]); - if (WT_USER_GEDCOM_ID == $gid) { - return true; - } - if ($type=='FAM') { - $parents = find_parents_in_record($gedrec); - if (WT_USER_GEDCOM_ID == $parents["HUSB"] || WT_USER_GEDCOM_ID == $parents["WIFE"]) { - return true; - } - } - } - return false; - } - - return true; -} -//-- end checkFactEdit function - if (!empty($pid)) { if (($pid!="newsour") && ($pid!="newrepo") && ($noteid!="newnote")) { $gedrec = find_gedcom_record($pid, WT_GED_ID, true); @@ -332,7 +296,7 @@ case 'delete': //------------------------------------------------------------------------------ //-- echo a form to edit the raw gedcom record in a large textarea case 'editraw': - if (!checkFactEdit($gedrec)) { + if (!WT_Person::getInstance($pid)->canEdit()) { echo "<br />", WT_I18N::translate('Privacy settings prevent you from editing this record.'); if (!empty($pid)) { echo "<br />", WT_I18N::translate('You have no access to'), " pid $pid."; @@ -1722,7 +1686,7 @@ case 'addopfchildaction': break; //------------------------------------------------------------------------------ case 'deleteperson': - if (!checkFactEdit($gedrec)) { + if (!WT_Person::getInstance($pid)->canEdit()) { echo "<br />", WT_I18N::translate('Privacy settings prevent you from editing this record.'); if (!empty($pid)) echo "<br />", WT_I18N::translate('You have no access to'), " pid $pid."; if (!empty($famid)) echo "<br />", WT_I18N::translate('You have no access to'), " famid $famid."; @@ -1732,7 +1696,7 @@ case 'deleteperson': break; //------------------------------------------------------------------------------ case 'deletefamily': - if (!checkFactEdit($gedrec)) { + if (!WT_Person::getInstance($pid)->canEdit()) { echo "<br />", WT_I18N::translate('Privacy settings prevent you from editing this record.'); if (!empty($pid)) echo "<br />", WT_I18N::translate('You have no access to'), " pid $pid."; if (!empty($famid)) echo "<br />", WT_I18N::translate('You have no access to'), " famid $famid."; |
