. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; use Fisharebest\Webtrees\Tree; /** * ADDRESS_LINE := {Size=1:60} * Typically used to define a mailing address of an individual when used * subordinate to a RESIdent tag. When it is used subordinate to an event tag * it is the address of the place where the event took place. The address * lines usually contain the addressee’s name and other street and city * information so that it forms an address that meets mailing requirements. */ class AddressLine extends AbstractElement { protected const MAXIMUM_LENGTH = 60; /** * Convert a value to a canonical form. * * @param string $value * * @return string */ public function canonical(string $value): string { // Browsers use MS-DOS line endings in multi-line data. return strtr($value, ["\t" => ' ', "\r\n" => "\n", "\r" => "\n"]); } /** * An edit control for this data. * * @param string $id * @param string $name * @param string $value * @param Tree $tree * * @return string */ public function edit(string $id, string $name, string $value, Tree $tree): string { return $this->editTextArea($id, $name, $value); } }