. */ namespace Fisharebest\Webtrees\Controller; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Filter; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Menu; /** * Controller for the source page */ class SourceController extends GedcomRecordController { /** * get edit menu */ public function getEditMenu() { if (!$this->record || $this->record->isPendingDeletion()) { return null; } // edit menu $menu = new Menu(I18N::translate('Edit'), '#', 'menu-sour'); if (Auth::isEditor($this->record->getTree())) { $fact = $this->record->getFirstFact('TITL'); if ($fact) { // Edit existing name $menu->addSubmenu(new Menu(I18N::translate('Edit the source'), 'edit_interface.php?action=edit&xref=' . $this->record->getXref() . '&fact_id=' . $fact->getFactId() . '&ged=' . $this->record->getTree()->getNameHtml(), 'menu-sour-edit')); } else { // Add new name $menu->addSubmenu(new Menu(I18N::translate('Edit the source'), 'edit_interface.php?action=add&fact=TITL&xref=' . $this->record->getXref() . '&ged=' . $this->record->getTree()->getNameHtml(), 'menu-sour-edit')); } // delete $menu->addSubmenu(new Menu(I18N::translate('Delete'), '#', 'menu-sour-del', [ 'onclick' => "return delete_record('" . I18N::translate('Are you sure you want to delete ā€œ%sā€?', strip_tags($this->record->getFullName())) . "', '" . $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'), 'edit_interface.php?action=editraw&ged=' . $this->record->getTree()->getNameHtml() . '&xref=' . $this->record->getXref(), 'menu-sour-editraw')); } return $menu; } }