@@ -43,7 +43,7 @@ |
||
| 43 | 43 | public const POLISH = 'polish'; |
| 44 | 44 | public const LITHUANIAN = 'lithuanian'; |
| 45 | 45 | public const ICELANDIC = 'icelandic'; |
| 46 | - public const DEFAULT = ''; |
|
| 46 | + public const default = ''; |
|
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * A list of supported surname traditions and their names. |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | $this->register(self::POLISH, new PolishSurnameTradition()); |
| 53 | 53 | $this->register(self::LITHUANIAN, new LithuanianSurnameTradition()); |
| 54 | 54 | $this->register(self::ICELANDIC, new IcelandicSurnameTradition()); |
| 55 | - $this->register(self::DEFAULT, new DefaultSurnameTradition()); |
|
| 55 | + $this->register(self::default, new DefaultSurnameTradition()); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -50,13 +50,13 @@ discard block |
||
| 50 | 50 | class MarkdownFactory implements MarkdownFactoryInterface |
| 51 | 51 | { |
| 52 | 52 | // Commonmark uses the self-closing form of this tag, so we do the same for consistency. |
| 53 | - public const BREAK = '<br />'; |
|
| 53 | + public const break = '<br />'; |
|
| 54 | 54 | |
| 55 | 55 | protected const CONFIG_AUTOLINK = [ |
| 56 | 56 | 'allow_unsafe_links' => false, |
| 57 | 57 | 'html_input' => HtmlFilter::ESCAPE, |
| 58 | 58 | 'renderer' => [ |
| 59 | - 'soft_break' => self::BREAK, |
|
| 59 | + 'soft_break' => self::break, |
|
| 60 | 60 | ], |
| 61 | 61 | ]; |
| 62 | 62 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | 'allow_unsafe_links' => false, |
| 65 | 65 | 'html_input' => HtmlFilter::ESCAPE, |
| 66 | 66 | 'renderer' => [ |
| 67 | - 'soft_break' => self::BREAK, |
|
| 67 | + 'soft_break' => self::break, |
|
| 68 | 68 | ], |
| 69 | 69 | 'table' => [ |
| 70 | 70 | 'wrap' => [ |
@@ -114,24 +114,24 @@ |
||
| 114 | 114 | public static function firstLineOfTextFromHtml(string $html): string |
| 115 | 115 | { |
| 116 | 116 | $html = strtr($html, [ |
| 117 | - '</blockquote>' => MarkdownFactory::BREAK, |
|
| 118 | - '</h1>' => MarkdownFactory::BREAK, |
|
| 119 | - '</h2>' => MarkdownFactory::BREAK, |
|
| 120 | - '</h3>' => MarkdownFactory::BREAK, |
|
| 121 | - '</h4>' => MarkdownFactory::BREAK, |
|
| 122 | - '</h5>' => MarkdownFactory::BREAK, |
|
| 123 | - '</h6>' => MarkdownFactory::BREAK, |
|
| 124 | - '</li>' => MarkdownFactory::BREAK, |
|
| 125 | - '</p>' => MarkdownFactory::BREAK, |
|
| 126 | - '</pre>' => MarkdownFactory::BREAK, |
|
| 117 | + '</blockquote>' => MarkdownFactory::break, |
|
| 118 | + '</h1>' => MarkdownFactory::break, |
|
| 119 | + '</h2>' => MarkdownFactory::break, |
|
| 120 | + '</h3>' => MarkdownFactory::break, |
|
| 121 | + '</h4>' => MarkdownFactory::break, |
|
| 122 | + '</h5>' => MarkdownFactory::break, |
|
| 123 | + '</h6>' => MarkdownFactory::break, |
|
| 124 | + '</li>' => MarkdownFactory::break, |
|
| 125 | + '</p>' => MarkdownFactory::break, |
|
| 126 | + '</pre>' => MarkdownFactory::break, |
|
| 127 | 127 | '</td>' => ' ', |
| 128 | 128 | '</th>' => ' ', |
| 129 | - '<hr>' => MarkdownFactory::BREAK, |
|
| 129 | + '<hr>' => MarkdownFactory::break, |
|
| 130 | 130 | ]); |
| 131 | 131 | |
| 132 | 132 | $html = strip_tags($html, ['br']); |
| 133 | 133 | |
| 134 | - [$first] = explode(MarkdownFactory::BREAK, $html, 2); |
|
| 134 | + [$first] = explode(MarkdownFactory::break, $html, 2); |
|
| 135 | 135 | |
| 136 | 136 | return htmlspecialchars_decode($first, ENT_QUOTES); |
| 137 | 137 | } |
@@ -1090,7 +1090,7 @@ |
||
| 1090 | 1090 | } else { |
| 1091 | 1091 | $value = strip_tags(Registry::markdownFactory()->autolink($value, $this->tree), ['br']); |
| 1092 | 1092 | } |
| 1093 | - $value = strtr($value, [MarkdownFactory::BREAK => ' ']); |
|
| 1093 | + $value = strtr($value, [MarkdownFactory::break => ' ']); |
|
| 1094 | 1094 | } |
| 1095 | 1095 | |
| 1096 | 1096 | if (!empty($attrs['truncate'])) { |
@@ -45,8 +45,8 @@ discard block |
||
| 45 | 45 | new CensusColumnFullName($this, 'Name', 'Name of each person in family, household or institution'), |
| 46 | 46 | new CensusColumnNull($this, 'Place of Abode', '(In rural localities give parish or township. In cities, towns and villages, give street a> |
| 47 | 47 | new CensusColumnNull($this, 'Own/Rent', 'Home owned or rented'), |
| 48 | - new CensusColumnNull($this, 'Value', 'If Owned give value. If rented, give rent paid per month'), |
|
| 49 | - new CensusColumnNull($this, 'Class', 'Class of House: Apartment, Row or Terrace, Single house, Semi-Detached, Flat'), |
|
| 48 | + new CensusColumnNull($this, 'Value', 'if Owned give value. if rented, give rent paid per month'), |
|
| 49 | + new CensusColumnNull($this, 'class', 'class of House: Apartment, Row or Terrace, Single house, Semi-Detached, Flat'), |
|
| 50 | 50 | new CensusColumnNull($this, 'Materials', 'Material of Construction: Stone, Brick, Wood, Brick Veneered, Stucco, Cement bricks'), |
| 51 | 51 | new CensusColumnNull($this, 'Rooms', 'Rooms occupied by this family'), |
| 52 | 52 | new CensusColumnNull($this, 'Radio', 'Has this family a radio?'), |
@@ -69,10 +69,10 @@ discard block |
||
| 69 | 69 | new CensusColumnNull($this, 'Ms school', 'Months at school since Sept. 1, 1930'), |
| 70 | 70 | new CensusColumnOccupation($this, 'Occupation', 'Trade, profession or particular kind of work, as carpenter, weaver, sawyer, merchant, fa> |
| 71 | 71 | new CensusColumnNull($this, 'Industry', 'Industry or business in which engaged or employed as cotton mill, brass foundry, grocery, coal m> |
| 72 | - new CensusColumnNull($this, 'Class', 'Class of worker'), |
|
| 72 | + new CensusColumnNull($this, 'class', 'class of worker'), |
|
| 73 | 73 | new CensusColumnNull($this, 'Earnings', 'Total earnings in the past twelve months (Since June 1st, 1930)'), |
| 74 | - new CensusColumnNull($this, 'Employed', 'If an employee, where you at work Monday June 1st , 1930'), |
|
| 75 | - new CensusColumnNull($this, 'WHY', 'If answer to previous question is NO. Why were you not at work on Monday, June 1st, 1931. (For Exampl> |
|
| 74 | + new CensusColumnNull($this, 'Employed', 'if an employee, where you at work Monday June 1st , 1930'), |
|
| 75 | + new CensusColumnNull($this, 'WHY', 'if answer to previous question is NO. Why were you not at work on Monday, June 1st, 1931. (for Exampl> |
|
| 76 | 76 | new CensusColumnNull($this, 'Weeks unemployed', 'Total number of weeks unemployed from any cause in the last 12 months.'), |
| 77 | 77 | new CensusColumnNull($this, 'No Job', 'Of the total numer of weeks reported out of work in column 34, how many were due to-'), |
| 78 | 78 | new CensusColumnNull($this, 'Illness', 'Of the total numer of weeks reported out of work in column 34, how many were due to-'), |