13d2c98d1SGreg Roach<?php 23d2c98d1SGreg Roach 33d2c98d1SGreg Roach/** 43d2c98d1SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 63d2c98d1SGreg Roach * This program is free software: you can redistribute it and/or modify 73d2c98d1SGreg Roach * it under the terms of the GNU General Public License as published by 83d2c98d1SGreg Roach * the Free Software Foundation, either version 3 of the License, or 93d2c98d1SGreg Roach * (at your option) any later version. 103d2c98d1SGreg Roach * This program is distributed in the hope that it will be useful, 113d2c98d1SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 123d2c98d1SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 133d2c98d1SGreg Roach * GNU General Public License for more details. 143d2c98d1SGreg Roach * You should have received a copy of the GNU General Public License 153d2c98d1SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 163d2c98d1SGreg Roach */ 173d2c98d1SGreg Roach 183d2c98d1SGreg Roachdeclare(strict_types=1); 193d2c98d1SGreg Roach 203d2c98d1SGreg Roachnamespace Fisharebest\Webtrees\Elements; 213d2c98d1SGreg Roach 223d2c98d1SGreg Roachuse Fisharebest\Webtrees\I18N; 233d2c98d1SGreg Roachuse Fisharebest\Webtrees\Tree; 243d2c98d1SGreg Roach 253d2c98d1SGreg Roach/** 263d2c98d1SGreg Roach * <PRIORITY>:= integer 0 to 8, defined values: 0 = high, 5 = medium, 8 = low 273d2c98d1SGreg Roach */ 283d2c98d1SGreg Roachclass ResearchTaskPriority extends AbstractElement 293d2c98d1SGreg Roach{ 303d2c98d1SGreg Roach /** 313d2c98d1SGreg Roach * Create a default value for this element. 323d2c98d1SGreg Roach * 333d2c98d1SGreg Roach * @param Tree $tree 343d2c98d1SGreg Roach * 353d2c98d1SGreg Roach * @return string 363d2c98d1SGreg Roach */ 373d2c98d1SGreg Roach public function default(Tree $tree): string 383d2c98d1SGreg Roach { 393d2c98d1SGreg Roach return '4'; 403d2c98d1SGreg Roach } 413d2c98d1SGreg Roach 423d2c98d1SGreg Roach /** 433d2c98d1SGreg Roach * A list of controlled values for this element 443d2c98d1SGreg Roach * 453d2c98d1SGreg Roach * @return array<int|string,string> 463d2c98d1SGreg Roach */ 473d2c98d1SGreg Roach public function values(): array 483d2c98d1SGreg Roach { 493d2c98d1SGreg Roach return [ 503d2c98d1SGreg Roach '' => '', 513d2c98d1SGreg Roach 0 => I18N::translate(I18N::number(0)), 523d2c98d1SGreg Roach 1 => I18N::translate(I18N::number(1)), 533d2c98d1SGreg Roach 2 => I18N::translate(I18N::number(2)), 543d2c98d1SGreg Roach 3 => I18N::translate(I18N::number(3)), 553d2c98d1SGreg Roach 4 => I18N::translate(I18N::number(4)), 563d2c98d1SGreg Roach 5 => I18N::translate(I18N::number(5)), 573d2c98d1SGreg Roach 6 => I18N::translate(I18N::number(6)), 583d2c98d1SGreg Roach 7 => I18N::translate(I18N::number(7)), 593d2c98d1SGreg Roach 8 => I18N::translate(I18N::number(8)), 603d2c98d1SGreg Roach ]; 613d2c98d1SGreg Roach } 623d2c98d1SGreg Roach} 63