. */ 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 '