mirror of
https://github.com/YunoHost-Apps/webtrees_ynh.git
synced 2024-09-03 18:26:37 +02:00
177 lines
6.3 KiB
PHP
177 lines
6.3 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* webtrees: online genealogy
|
||
|
* Copyright (C) 2016 webtrees development team
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
namespace Fisharebest\Webtrees\Controller;
|
||
|
|
||
|
use Fisharebest\Webtrees\Auth;
|
||
|
use Fisharebest\Webtrees\Family;
|
||
|
use Fisharebest\Webtrees\Functions\Functions;
|
||
|
use Fisharebest\Webtrees\Functions\FunctionsPrint;
|
||
|
use Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
|
||
|
use Fisharebest\Webtrees\I18N;
|
||
|
use Fisharebest\Webtrees\Individual;
|
||
|
use Fisharebest\Webtrees\Menu;
|
||
|
|
||
|
/**
|
||
|
* Controller for the family page
|
||
|
*/
|
||
|
class FamilyController extends GedcomRecordController {
|
||
|
/**
|
||
|
* Get significant information from this page, to allow other pages such as
|
||
|
* charts and reports to initialise with the same records
|
||
|
*
|
||
|
* @return Individual
|
||
|
*/
|
||
|
public function getSignificantIndividual() {
|
||
|
if ($this->record) {
|
||
|
foreach ($this->record->getSpouses() as $individual) {
|
||
|
return $individual;
|
||
|
}
|
||
|
foreach ($this->record->getChildren() as $individual) {
|
||
|
return $individual;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return parent::getSignificantIndividual();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get significant information from this page, to allow other pages such as
|
||
|
* charts and reports to initialise with the same records
|
||
|
*
|
||
|
* @return Family
|
||
|
*/
|
||
|
public function getSignificantFamily() {
|
||
|
if ($this->record) {
|
||
|
return $this->record;
|
||
|
}
|
||
|
|
||
|
return parent::getSignificantFamily();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* get edit menu
|
||
|
*/
|
||
|
public function getEditMenu() {
|
||
|
if (!$this->record || $this->record->isPendingDeletion()) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
// edit menu
|
||
|
$menu = new Menu(I18N::translate('Edit'), '#', 'menu-fam');
|
||
|
|
||
|
if (Auth::isEditor($this->record->getTree())) {
|
||
|
// edit_fam / members
|
||
|
$menu->addSubmenu(new Menu(I18N::translate('Change family members'), '#', 'menu-fam-change', array(
|
||
|
'onclick' => 'return change_family_members("' . $this->record->getXref() . '");',
|
||
|
)));
|
||
|
|
||
|
// edit_fam / add child
|
||
|
$menu->addSubmenu(new Menu(I18N::translate('Add a child to this family'), '#', 'menu-fam-addchil', array(
|
||
|
'onclick' => 'return add_child_to_family("' . $this->record->getXref() . '", "U");',
|
||
|
)));
|
||
|
|
||
|
// edit_fam / reorder_children
|
||
|
if ($this->record->getNumberOfChildren() > 1) {
|
||
|
$menu->addSubmenu(new Menu(I18N::translate('Re-order children'), '#', 'menu-fam-orderchil', array(
|
||
|
'onclick' => 'return reorder_children("' . $this->record->getXref() . '");',
|
||
|
)));
|
||
|
}
|
||
|
|
||
|
// delete
|
||
|
$menu->addSubmenu(new Menu(I18N::translate('Delete'), '#', 'menu-fam-del', array(
|
||
|
'onclick' => 'return delete_record("' . I18N::translate('Deleting the family will unlink all of the individuals from each other but will leave the individuals in place. Are you sure you want to delete this family?') . '", "' . $this->record->getXref() . '");',
|
||
|
)));
|
||
|
}
|
||
|
|
||
|
// edit raw
|
||
|
if (Auth::isAdmin() || Auth::isEditor($this->record->getTree()) && $this->record->getTree()->getPreference('SHOW_GEDCOM_RECORD')) {
|
||
|
$menu->addSubmenu(new Menu(I18N::translate('Edit the raw GEDCOM'), '#', 'menu-fam-editraw', array(
|
||
|
'onclick' => 'return edit_raw("' . $this->record->getXref() . '");',
|
||
|
)));
|
||
|
}
|
||
|
|
||
|
return $menu;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get significant information from this page, to allow other pages such as
|
||
|
* charts and reports to initialise with the same records
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getSignificantSurname() {
|
||
|
if ($this->record && $this->record->getHusband()) {
|
||
|
list($surn) = explode(',', $this->record->getHusband()->getSortName());
|
||
|
|
||
|
return $surn;
|
||
|
} else {
|
||
|
return '';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Print the facts
|
||
|
*/
|
||
|
public function printFamilyFacts() {
|
||
|
global $linkToID;
|
||
|
|
||
|
$linkToID = $this->record->getXref(); // -- Tell addmedia.php what to link to
|
||
|
|
||
|
$indifacts = $this->record->getFacts();
|
||
|
if ($indifacts) {
|
||
|
Functions::sortFacts($indifacts);
|
||
|
foreach ($indifacts as $fact) {
|
||
|
FunctionsPrintFacts::printFact($fact, $this->record);
|
||
|
}
|
||
|
} else {
|
||
|
echo '<tr><td class="messagebox" colspan="2">', I18N::translate('No facts exist for this family.'), '</td></tr>';
|
||
|
}
|
||
|
|
||
|
if (Auth::isEditor($this->record->getTree())) {
|
||
|
FunctionsPrint::printAddNewFact($this->record->getXref(), $indifacts, 'FAM');
|
||
|
|
||
|
echo '<tr><td class="descriptionbox">';
|
||
|
echo I18N::translate('Note');
|
||
|
echo '</td><td class="optionbox">';
|
||
|
echo "<a href=\"#\" onclick=\"return add_new_record('" . $this->record->getXref() . "','NOTE');\">", I18N::translate('Add a note'), '</a>';
|
||
|
echo '</td></tr>';
|
||
|
|
||
|
echo '<tr><td class="descriptionbox">';
|
||
|
echo I18N::translate('Shared note');
|
||
|
echo '</td><td class="optionbox">';
|
||
|
echo "<a href=\"#\" onclick=\"return add_new_record('" . $this->record->getXref() . "','SHARED_NOTE');\">", I18N::translate('Add a shared note'), '</a>';
|
||
|
echo '</td></tr>';
|
||
|
|
||
|
if ($this->record->getTree()->getPreference('MEDIA_UPLOAD') >= Auth::accessLevel($this->record->getTree())) {
|
||
|
echo '<tr><td class="descriptionbox">';
|
||
|
echo I18N::translate('Media object');
|
||
|
echo '</td><td class="optionbox">';
|
||
|
echo "<a href=\"#\" onclick=\"window.open('addmedia.php?action=showmediaform&linktoid=" . $this->record->getXref() . "', '_blank', edit_window_specs); return false;\">", I18N::translate('Add a media object'), '</a>';
|
||
|
echo FunctionsPrint::helpLink('OBJE');
|
||
|
echo '<br>';
|
||
|
echo "<a href=\"#\" onclick=\"window.open('inverselink.php?linktoid=" . $this->record->getXref() . "&linkto=family', '_blank', find_window_specs); return false;\">", I18N::translate('Link to an existing media object'), '</a>';
|
||
|
echo '</td></tr>';
|
||
|
}
|
||
|
|
||
|
echo '<tr><td class="descriptionbox">';
|
||
|
echo I18N::translate('Source');
|
||
|
echo '</td><td class="optionbox">';
|
||
|
echo "<a href=\"#\" onclick=\"return add_new_record('" . $this->record->getXref() . "','SOUR');\">", I18N::translate('Add a source citation'), '</a>';
|
||
|
echo '</td></tr>';
|
||
|
}
|
||
|
}
|
||
|
}
|