1*c2ed51d1SGreg Roach<?php 2*c2ed51d1SGreg Roach 3*c2ed51d1SGreg Roach/** 4*c2ed51d1SGreg Roach * webtrees: online genealogy 5*c2ed51d1SGreg Roach * Copyright (C) 2021 webtrees development team 6*c2ed51d1SGreg Roach * This program is free software: you can redistribute it and/or modify 7*c2ed51d1SGreg Roach * it under the terms of the GNU General Public License as published by 8*c2ed51d1SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9*c2ed51d1SGreg Roach * (at your option) any later version. 10*c2ed51d1SGreg Roach * This program is distributed in the hope that it will be useful, 11*c2ed51d1SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*c2ed51d1SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*c2ed51d1SGreg Roach * GNU General Public License for more details. 14*c2ed51d1SGreg Roach * You should have received a copy of the GNU General Public License 15*c2ed51d1SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16*c2ed51d1SGreg Roach */ 17*c2ed51d1SGreg Roach 18*c2ed51d1SGreg Roachdeclare(strict_types=1); 19*c2ed51d1SGreg Roach 20*c2ed51d1SGreg Roachnamespace Fisharebest\Webtrees\Elements; 21*c2ed51d1SGreg Roach 22*c2ed51d1SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\CreateSourceModal; 23*c2ed51d1SGreg Roachuse Fisharebest\Webtrees\I18N; 24*c2ed51d1SGreg Roachuse Fisharebest\Webtrees\Registry; 25*c2ed51d1SGreg Roachuse Fisharebest\Webtrees\Tree; 26*c2ed51d1SGreg Roach 27*c2ed51d1SGreg Roachuse function e; 28*c2ed51d1SGreg Roachuse function route; 29*c2ed51d1SGreg Roachuse function trim; 30*c2ed51d1SGreg Roachuse function view; 31*c2ed51d1SGreg Roach 32*c2ed51d1SGreg Roach/** 33*c2ed51d1SGreg Roach * XREF:SOUR := {Size=1:22} 34*c2ed51d1SGreg Roach * A pointer to, or a cross-reference identifier of, a SOURce record. 35*c2ed51d1SGreg Roach */ 36*c2ed51d1SGreg Roachclass XrefSource extends AbstractXrefElement 37*c2ed51d1SGreg Roach{ 38*c2ed51d1SGreg Roach protected const SUBTAGS = [ 39*c2ed51d1SGreg Roach 'PAGE' => '0:1', 40*c2ed51d1SGreg Roach 'EVEN' => '0:1', 41*c2ed51d1SGreg Roach 'DATA' => '0:1', 42*c2ed51d1SGreg Roach 'OBJE' => '0:M', 43*c2ed51d1SGreg Roach 'NOTE' => '0:M', 44*c2ed51d1SGreg Roach 'QUAY' => '0:1', 45*c2ed51d1SGreg Roach ]; 46*c2ed51d1SGreg Roach 47*c2ed51d1SGreg Roach protected const ABRIDGED_SUBTAGS = [ 48*c2ed51d1SGreg Roach 'PAGE' => '0:1', 49*c2ed51d1SGreg Roach 'DATA' => '0:1', 50*c2ed51d1SGreg Roach 'OBJE' => '0:M', 51*c2ed51d1SGreg Roach ]; 52*c2ed51d1SGreg Roach 53*c2ed51d1SGreg Roach /** 54*c2ed51d1SGreg Roach * An edit control for this data. 55*c2ed51d1SGreg Roach * 56*c2ed51d1SGreg Roach * @param string $id 57*c2ed51d1SGreg Roach * @param string $name 58*c2ed51d1SGreg Roach * @param string $value 59*c2ed51d1SGreg Roach * @param Tree $tree 60*c2ed51d1SGreg Roach * 61*c2ed51d1SGreg Roach * @return string 62*c2ed51d1SGreg Roach */ 63*c2ed51d1SGreg Roach public function edit(string $id, string $name, string $value, Tree $tree): string 64*c2ed51d1SGreg Roach { 65*c2ed51d1SGreg Roach $select = view('components/select-source', [ 66*c2ed51d1SGreg Roach 'id' => $id, 67*c2ed51d1SGreg Roach 'name' => $name, 68*c2ed51d1SGreg Roach 'source' => Registry::sourceFactory()->make(trim($value, '@'), $tree), 69*c2ed51d1SGreg Roach 'tree' => $tree, 70*c2ed51d1SGreg Roach 'at' => '@', 71*c2ed51d1SGreg Roach ]); 72*c2ed51d1SGreg Roach 73*c2ed51d1SGreg Roach return 74*c2ed51d1SGreg Roach '<div class="input-group">' . 75*c2ed51d1SGreg Roach '<div class="input-group-prepend">' . 76*c2ed51d1SGreg Roach '<button class="btn btn-secondary" type="button" data-toggle="modal" data-backdrop="static" data-target="#wt-ajax-modal" data-href="' . e(route(CreateSourceModal::class, ['tree' => $tree->name()])) . '" data-select-id="' . $id . '" title="' . I18N::translate('Create a source') . '">' . 77*c2ed51d1SGreg Roach view('icons/add') . 78*c2ed51d1SGreg Roach '</button>' . 79*c2ed51d1SGreg Roach '</div>' . 80*c2ed51d1SGreg Roach $select . 81*c2ed51d1SGreg Roach '</div>'; 82*c2ed51d1SGreg Roach } 83*c2ed51d1SGreg Roach 84*c2ed51d1SGreg Roach /** 85*c2ed51d1SGreg Roach * @param Tree $tree 86*c2ed51d1SGreg Roach * 87*c2ed51d1SGreg Roach * @return array<string,string> 88*c2ed51d1SGreg Roach */ 89*c2ed51d1SGreg Roach public function subtags(Tree $tree): array 90*c2ed51d1SGreg Roach { 91*c2ed51d1SGreg Roach if ($tree->getPreference('FULL_SOURCES') === '1') { 92*c2ed51d1SGreg Roach return static::SUBTAGS; 93*c2ed51d1SGreg Roach } 94*c2ed51d1SGreg Roach 95*c2ed51d1SGreg Roach return static::ABRIDGED_SUBTAGS; 96*c2ed51d1SGreg Roach } 97*c2ed51d1SGreg Roach 98*c2ed51d1SGreg Roach /** 99*c2ed51d1SGreg Roach * Display the value of this type of element. 100*c2ed51d1SGreg Roach * 101*c2ed51d1SGreg Roach * @param string $value 102*c2ed51d1SGreg Roach * @param Tree $tree 103*c2ed51d1SGreg Roach * 104*c2ed51d1SGreg Roach * @return string 105*c2ed51d1SGreg Roach */ 106*c2ed51d1SGreg Roach public function value(string $value, Tree $tree): string 107*c2ed51d1SGreg Roach { 108*c2ed51d1SGreg Roach return $this->valueXrefLink($value, $tree, Registry::sourceFactory()); 109*c2ed51d1SGreg Roach } 110*c2ed51d1SGreg Roach} 111