Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#56)
by Der Mundschenk
04:20
created

Settings::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
ccs 3
cts 3
cp 1
cc 2
eloc 2
nc 2
nop 1
crap 2
1
<?php
2
/**
3
 *  This file is part of PHP-Typography.
4
 *
5
 *  Copyright 2014-2017 Peter Putzer.
6
 *  Copyright 2009-2011 KINGdesk, LLC.
7
 *
8
 *  This program is free software; you can redistribute it and/or modify
9
 *  it under the terms of the GNU General Public License as published by
10
 *  the Free Software Foundation; either version 2 of the License, or
11
 *  (at your option) any later version.
12
 *
13
 *  This program is distributed in the hope that it will be useful,
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 *  GNU General Public License for more details.
17
 *
18
 *  You should have received a copy of the GNU General Public License along
19
 *  with this program; if not, write to the Free Software Foundation, Inc.,
20
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21
 *
22
 *  ***
23
 *
24
 *  @package mundschenk-at/php-typography
25
 *  @license http://www.gnu.org/licenses/gpl-2.0.html
26
 */
27
28
namespace PHP_Typography;
29
30
use PHP_Typography\Settings\Dash_Style;
31
use PHP_Typography\Settings\Quote_Style;
32
33
/**
34
 * Store settings for the PHP_Typography class.
35
 *
36
 * @author Peter Putzer <[email protected]>
37
 *
38
 * @since 4.0.0
39
 */
40
class Settings implements \ArrayAccess, \JsonSerializable {
41
42
	/**
43
	 * The current no-break narrow space character.
44
	 *
45
	 * @var string
46
	 */
47
	protected $no_break_narrow_space;
48
49
	/**
50
	 * Primary quote style.
51
	 *
52
	 * @var Settings\Quotes
53
	 */
54
	protected $primary_quote_style;
55
56
	/**
57
	 * Secondary quote style.
58
	 *
59
	 * @var Settings\Quotes
60
	 */
61
	protected $secondary_quote_style;
62
63
	/**
64
	 * A regex pattern for custom units (or the empty string).
65
	 *
66
	 * @var string
67
	 */
68
	protected $custom_units = '';
69
70
	/**
71
	 * A hashmap of settings for the various typographic options.
72
	 *
73
	 * @var array
74
	 */
75
	protected $data = [];
76
77
	/**
78
	 * The current dash style.
79
	 *
80
	 * @var Settings\Dashes
81
	 */
82
	protected $dash_style;
83
84
	/**
85
	 * Sets up a new Settings object.
86
	 *
87
	 * @since 6.0.0 If $set_defaults is `false`, the settings object is not fully
88
	 *              initialized unless `set_smart_quotes_primary`,
89
	 *              `set_smart_quotes_secondary`, `set_smart_dashes_style` and
90
	 *              `set_true_no_break_narrow_space` are called explicitly.
91
	 *
92
	 * @param bool $set_defaults If true, set default values for various properties. Defaults to true.
93
	 */
94 1
	public function __construct( $set_defaults = true ) {
95 1
		if ( $set_defaults ) {
96 1
			$this->set_defaults();
97
		}
98 1
	}
99
100
	/**
101
	 * Provides access to named settings (object syntax).
102
	 *
103
	 * @param string $key The settings key.
104
	 *
105
	 * @return mixed
106
	 */
107 1
	public function &__get( $key ) {
108 1
		return $this->data[ $key ];
109
	}
110
111
	/**
112
	 * Changes a named setting (object syntax).
113
	 *
114
	 * @param string $key   The settings key.
115
	 * @param mixed  $value The settings value.
116
	 */
117 1
	public function __set( $key, $value ) {
118 1
		$this->data[ $key ] = $value;
119 1
	}
120
121
	/**
122
	 * Checks if a named setting exists (object syntax).
123
	 *
124
	 * @param string $key The settings key.
125
	 */
126 1
	public function __isset( $key ) {
127 1
		return isset( $this->data[ $key ] );
128
	}
129
130
	/**
131
	 * Unsets a named setting.
132
	 *
133
	 * @param string $key The settings key.
134
	 */
135 1
	public function __unset( $key ) {
136 1
		unset( $this->data[ $key ] );
137 1
	}
138
139
	/**
140
	 * Changes a named setting (array syntax).
141
	 *
142
	 * @param string $offset The settings key.
143
	 * @param mixed  $value  The settings value.
144
	 */
145 1
	public function offsetSet( $offset, $value ) {
146 1
		if ( ! empty( $offset ) ) {
147 1
			$this->data[ $offset ] = $value;
148
		}
149 1
	}
150
151
	/**
152
	 * Checks if a named setting exists (array syntax).
153
	 *
154
	 * @param string $offset The settings key.
155
	 */
156 1
	public function offsetExists( $offset ) {
157 1
		return isset( $this->data[ $offset ] );
158
	}
159
160
	/**
161
	 * Unsets a named setting (array syntax).
162
	 *
163
	 * @param string $offset The settings key.
164
	 */
165 1
	public function offsetUnset( $offset ) {
166 1
		unset( $this->data[ $offset ] );
167 1
	}
168
169
	/**
170
	 * Provides access to named settings (array syntax).
171
	 *
172
	 * @param string $offset The settings key.
173
	 *
174
	 * @return mixed
175
	 */
176 1
	public function offsetGet( $offset ) {
177 1
		return isset( $this->data[ $offset ] ) ? $this->data[ $offset ] : null;
178
	}
179
180
	/**
181
	 * Provides a JSON serialization of the settings.
182
	 *
183
	 * @return mixed
184
	 */
185 1
	public function jsonSerialize() {
186 1
		return \array_merge(
187 1
			$this->data,
188
			[
189 1
				'no_break_narrow_space' => $this->no_break_narrow_space,
190 1
				'primary_quotes'        => "{$this->primary_quote_style->open()}|{$this->primary_quote_style->close()}",
191 1
				'secondary_quotes'      => "{$this->secondary_quote_style->open()}|{$this->secondary_quote_style->close()}",
192 1
				'dash_style'            => "{$this->dash_style->interval_dash()}|{$this->dash_style->interval_space()}|{$this->dash_style->parenthetical_dash()}|{$this->dash_style->parenthetical_space()}",
193 1
				'custom_units'          => $this->custom_units,
194
			]
195
		);
196
	}
197
198
	/**
199
	 * Retrieves the current non-breaking narrow space character (either the
200
	 * regular non-breaking space &nbsp; or the the true non-breaking narrow space &#8239;).
201
	 *
202
	 * @return string
203
	 */
204 1
	public function no_break_narrow_space() {
205 1
		return $this->no_break_narrow_space;
206
	}
207
208
	/**
209
	 * Retrieves the primary (double) quote style.
210
	 *
211
	 * @return Settings\Quotes
212
	 */
213 1
	public function primary_quote_style() {
214 1
		return $this->primary_quote_style;
215
	}
216
217
	/**
218
	 * Retrieves the secondary (single) quote style.
219
	 *
220
	 * @return Settings\Quotes
221
	 */
222 1
	public function secondary_quote_style() {
223 1
		return $this->secondary_quote_style;
224
	}
225
226
	/**
227
	 * Retrieves the dash style.
228
	 *
229
	 * @return Settings\Dashes
230
	 */
231 1
	public function dash_style() {
232 1
		return $this->dash_style;
233
	}
234
235
	/**
236
	 * Retrieves the custom units pattern.
237
	 *
238
	 * @return string The pattern is suitable for inclusion into a regular expression.
239
	 */
240 1
	public function custom_units() {
241 1
		return $this->custom_units;
242
	}
243
244
	/**
245
	 * (Re)set various options to their default values.
246
	 */
247 1
	public function set_defaults() {
248
		// General attributes.
249 1
		$this->set_tags_to_ignore();
250 1
		$this->set_classes_to_ignore();
251 1
		$this->set_ids_to_ignore();
252
253
		// Smart characters.
254 1
		$this->set_smart_quotes();
255 1
		$this->set_smart_quotes_primary();
256 1
		$this->set_smart_quotes_secondary();
257 1
		$this->set_smart_dashes();
258 1
		$this->set_smart_dashes_style();
259 1
		$this->set_smart_ellipses();
260 1
		$this->set_smart_diacritics();
261 1
		$this->set_diacritic_language();
262 1
		$this->set_diacritic_custom_replacements();
263 1
		$this->set_smart_marks();
264 1
		$this->set_smart_ordinal_suffix();
265 1
		$this->set_smart_math();
266 1
		$this->set_smart_fractions();
267 1
		$this->set_smart_exponents();
268
269
		// Smart spacing.
270 1
		$this->set_single_character_word_spacing();
271 1
		$this->set_fraction_spacing();
272 1
		$this->set_unit_spacing();
273 1
		$this->set_french_punctuation_spacing();
274 1
		$this->set_units();
275 1
		$this->set_dash_spacing();
276 1
		$this->set_dewidow();
277 1
		$this->set_max_dewidow_length();
278 1
		$this->set_max_dewidow_pull();
279 1
		$this->set_dewidow_word_number();
280 1
		$this->set_wrap_hard_hyphens();
281 1
		$this->set_url_wrap();
282 1
		$this->set_email_wrap();
283 1
		$this->set_min_after_url_wrap();
284 1
		$this->set_space_collapse();
285 1
		$this->set_true_no_break_narrow_space();
286
287
		// Character styling.
288 1
		$this->set_style_ampersands();
289 1
		$this->set_style_caps();
290 1
		$this->set_style_initial_quotes();
291 1
		$this->set_style_numbers();
292 1
		$this->set_style_hanging_punctuation();
293 1
		$this->set_initial_quote_tags();
294
295
		// Hyphenation.
296 1
		$this->set_hyphenation();
297 1
		$this->set_hyphenation_language();
298 1
		$this->set_min_length_hyphenation();
299 1
		$this->set_min_before_hyphenation();
300 1
		$this->set_min_after_hyphenation();
301 1
		$this->set_hyphenate_headings();
302 1
		$this->set_hyphenate_all_caps();
303 1
		$this->set_hyphenate_title_case();
304 1
		$this->set_hyphenate_compounds();
305 1
		$this->set_hyphenation_exceptions();
306
307
		// Parser error handling.
308 1
		$this->set_ignore_parser_errors();
309 1
	}
310
311
	/**
312
	 * Enable lenient parser error handling (HTML is "best guess" if enabled).
313
	 *
314
	 * @param bool $on Optional. Default false.
315
	 */
316 1
	public function set_ignore_parser_errors( $on = false ) {
317 1
		$this->data['parserErrorsIgnore'] = $on;
318 1
	}
319
320
	/**
321
	 * Sets an optional handler for parser errors. Invalid callbacks will be silently ignored.
322
	 *
323
	 * @since 6.0.0. callable type is enforced via typehinting.
324
	 *
325
	 * @param callable|null $handler Optional. A callable that takes an array of error strings as its parameter. Default null.
326
	 */
327 2
	public function set_parser_errors_handler( callable $handler = null ) {
328 2
		$this->data['parserErrorsHandler'] = $handler;
329 2
	}
330
331
	/**
332
	 * Enable usage of true "no-break narrow space" (&#8239;) instead of the normal no-break space (&nbsp;).
333
	 *
334
	 * @param bool $on Optional. Default false.
335
	 */
336 1
	public function set_true_no_break_narrow_space( $on = false ) {
337
338 1
		if ( $on ) {
339 1
			$this->no_break_narrow_space = U::NO_BREAK_NARROW_SPACE;
340
		} else {
341 1
			$this->no_break_narrow_space = U::NO_BREAK_SPACE;
342
		}
343 1
	}
344
345
	/**
346
	 * Sets tags for which the typography of their children will be left untouched.
347
	 *
348
	 * @param string|array $tags A comma separated list or an array of tag names.
349
	 */
350 1
	public function set_tags_to_ignore( $tags = [ 'code', 'head', 'kbd', 'object', 'option', 'pre', 'samp', 'script', 'noscript', 'noembed', 'select', 'style', 'textarea', 'title', 'var', 'math' ] ) {
351
		// Ensure that we pass only lower-case tag names to XPath.
352 1
		$tags = array_filter( array_map( 'strtolower', Strings::maybe_split_parameters( $tags ) ), 'ctype_alnum' );
353
354 1
		$this->data['ignoreTags'] = array_unique( array_merge( $tags, array_flip( DOM::inappropriate_tags() ) ) );
355 1
	}
356
357
	/**
358
	 * Sets classes for which the typography of their children will be left untouched.
359
	 *
360
	 * @param string|array $classes A comma separated list or an array of class names.
361
	 */
362 1
	public function set_classes_to_ignore( $classes = [ 'vcard', 'noTypo' ] ) {
363 1
		$this->data['ignoreClasses'] = Strings::maybe_split_parameters( $classes );
364 1
	}
365
366
	/**
367
	 * Sets IDs for which the typography of their children will be left untouched.
368
	 *
369
	 * @param string|array $ids A comma separated list or an array of tag names.
370
	 */
371 1
	public function set_ids_to_ignore( $ids = [] ) {
372 1
		$this->data['ignoreIDs'] = Strings::maybe_split_parameters( $ids );
373 1
	}
374
375
	/**
376
	 * Enables/disables typographic quotes.
377
	 *
378
	 * @param bool $on Optional. Default true.
379
	 */
380 1
	public function set_smart_quotes( $on = true ) {
381 1
		$this->data['smartQuotes'] = $on;
382 1
	}
383
384
	/**
385
	 * Sets the style for primary ('double') quotemarks.
386
	 *
387
	 * Allowed values for $style:
388
	 * "doubleCurled" => "&ldquo;foo&rdquo;",
389
	 * "doubleCurledReversed" => "&rdquo;foo&rdquo;",
390
	 * "doubleLow9" => "&bdquo;foo&rdquo;",
391
	 * "doubleLow9Reversed" => "&bdquo;foo&ldquo;",
392
	 * "singleCurled" => "&lsquo;foo&rsquo;",
393
	 * "singleCurledReversed" => "&rsquo;foo&rsquo;",
394
	 * "singleLow9" => "&sbquo;foo&rsquo;",
395
	 * "singleLow9Reversed" => "&sbquo;foo&lsquo;",
396
	 * "doubleGuillemetsFrench" => "&laquo;&nbsp;foo&nbsp;&raquo;",
397
	 * "doubleGuillemets" => "&laquo;foo&raquo;",
398
	 * "doubleGuillemetsReversed" => "&raquo;foo&laquo;",
399
	 * "singleGuillemets" => "&lsaquo;foo&rsaquo;",
400
	 * "singleGuillemetsReversed" => "&rsaquo;foo&lsaquo;",
401
	 * "cornerBrackets" => "&#x300c;foo&#x300d;",
402
	 * "whiteCornerBracket" => "&#x300e;foo&#x300f;"
403
	 *
404
	 * @param string $style Defaults to 'doubleCurled.
405
	 *
406
	 * @throws \DomainException Thrown if $style constant is invalid.
407
	 */
408 3
	public function set_smart_quotes_primary( $style = Quote_Style::DOUBLE_CURLED ) {
409 3
		$this->primary_quote_style = $this->get_quote_style( $style );
410 2
	}
411
412
	/**
413
	 * Sets the style for secondary ('single') quotemarks.
414
	 *
415
	 * Allowed values for $style:
416
	 * "doubleCurled" => "&ldquo;foo&rdquo;",
417
	 * "doubleCurledReversed" => "&rdquo;foo&rdquo;",
418
	 * "doubleLow9" => "&bdquo;foo&rdquo;",
419
	 * "doubleLow9Reversed" => "&bdquo;foo&ldquo;",
420
	 * "singleCurled" => "&lsquo;foo&rsquo;",
421
	 * "singleCurledReversed" => "&rsquo;foo&rsquo;",
422
	 * "singleLow9" => "&sbquo;foo&rsquo;",
423
	 * "singleLow9Reversed" => "&sbquo;foo&lsquo;",
424
	 * "doubleGuillemetsFrench" => "&laquo;&nbsp;foo&nbsp;&raquo;",
425
	 * "doubleGuillemets" => "&laquo;foo&raquo;",
426
	 * "doubleGuillemetsReversed" => "&raquo;foo&laquo;",
427
	 * "singleGuillemets" => "&lsaquo;foo&rsaquo;",
428
	 * "singleGuillemetsReversed" => "&rsaquo;foo&lsaquo;",
429
	 * "cornerBrackets" => "&#x300c;foo&#x300d;",
430
	 * "whiteCornerBracket" => "&#x300e;foo&#x300f;"
431
	 *
432
	 * @param string $style Defaults to 'singleCurled'.
433
	 *
434
	 * @throws \DomainException Thrown if $style constant is invalid.
435
	 */
436 3
	public function set_smart_quotes_secondary( $style = Quote_Style::SINGLE_CURLED ) {
437 3
		$this->secondary_quote_style = $this->get_quote_style( $style );
438 2
	}
439
440
	/**
441
	 * Retrieves a Quotes instance from a given style.
442
	 *
443
	 * @param  Settings\Quotes|string $style A Quotes instance or a quote style constant.
444
	 *
445
	 * @throws \DomainException Thrown if $style constant is invalid.
446
	 *
447
	 * @return Settings\Quotes
448
	 */
449 6
	protected function get_quote_style( $style ) {
450 6
		return $this->get_style( $style, Settings\Quotes::class, [ Quote_Style::class, 'get_styled_quotes' ], 'quote' );
451
	}
452
453
	/**
454
	 * Retrieves an object from a given style.
455
	 *
456
	 * @param  object|string $style          A style object instance or a style constant.
457
	 * @param  string        $expected_class A class name.
458
	 * @param  callable      $get_style      A function that returns a style object from a given style constant.
459
	 * @param  string        $description    Style description for the exception message.
460
	 *
461
	 * @throws \DomainException Thrown if $style constant is invalid.
462
	 *
463
	 * @return object An instance of $expected_class.
464
	 */
465 9
	protected function get_style( $style, $expected_class, callable $get_style, $description ) {
466
		/**
467
		 * The returned object.
468
		 *
469
		 * @var object|null
470
		 */
471 9
		$object = null;
472
473 9
		if ( $style instanceof $expected_class ) {
474 3
			$object = $style;
475
		} else {
476 6
			$object = $get_style( $style, $this );
477
		}
478
479 9
		if ( ! $object instanceof $expected_class ) {
480 3
			throw new \DomainException( "Invalid $description style $style." );
481
		}
482
483 6
		return $object;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $object also could return the type string which is incompatible with the documented return type object.
Loading history...
484
	}
485
486
	/**
487
	 * Enables/disables replacement of "a--a" with En Dash " -- " and "---" with Em Dash.
488
	 *
489
	 * @param bool $on Optional. Default true.
490
	 */
491 1
	public function set_smart_dashes( $on = true ) {
492 1
		$this->data['smartDashes'] = $on;
493 1
	}
494
495
	/**
496
	 * Sets the typographical conventions used by smart_dashes.
497
	 *
498
	 * Allowed values for $style:
499
	 * - "traditionalUS"
500
	 * - "international"
501
	 *
502
	 * @param string|Settings\Dashes $style Optional. Default Dash_Style::TRADITIONAL_US.
503
	 *
504
	 * @throws \DomainException Thrown if $style constant is invalid.
505
	 */
506 3
	public function set_smart_dashes_style( $style = Dash_Style::TRADITIONAL_US ) {
507 3
		$this->dash_style = $this->get_style( $style, Settings\Dashes::class, [ Dash_Style::class, 'get_styled_dashes' ], 'dash' );
508 2
	}
509
510
	/**
511
	 * Enables/disables replacement of "..." with "…".
512
	 *
513
	 * @param bool $on Optional. Default true.
514
	 */
515 1
	public function set_smart_ellipses( $on = true ) {
516 1
		$this->data['smartEllipses'] = $on;
517 1
	}
518
519
	/**
520
	 * Enables/disables replacement "creme brulee" with "crème brûlée".
521
	 *
522
	 * @param bool $on Optional. Default true.
523
	 */
524 1
	public function set_smart_diacritics( $on = true ) {
525 1
		$this->data['smartDiacritics'] = $on;
526 1
	}
527
528
	/**
529
	 * Sets the language used for diacritics replacements.
530
	 *
531
	 * @param string $lang Has to correspond to a filename in 'diacritics'. Optional. Default 'en-US'.
532
	 */
533 1
	public function set_diacritic_language( $lang = 'en-US' ) {
534 1
		if ( isset( $this->data['diacriticLanguage'] ) && $this->data['diacriticLanguage'] === $lang ) {
535 1
			return;
536
		}
537
538 1
		$this->data['diacriticLanguage'] = $lang;
539 1
		$language_file_name              = \dirname( __FILE__ ) . '/diacritics/' . $lang . '.json';
540
541 1
		if ( \file_exists( $language_file_name ) ) {
542 1
			$diacritics_file              = \json_decode( \file_get_contents( $language_file_name ), true );
543 1
			$this->data['diacriticWords'] = $diacritics_file['diacritic_words'];
544
		} else {
545 1
			unset( $this->data['diacriticWords'] );
546
		}
547
548 1
		$this->update_diacritics_replacement_arrays();
549 1
	}
550
551
	/**
552
	 * Sets up custom diacritics replacements.
553
	 *
554
	 * @param string|array $custom_replacements An array formatted [needle=>replacement, needle=>replacement...],
555
	 *                                          or a string formatted `"needle"=>"replacement","needle"=>"replacement",...
556
	 */
557 5
	public function set_diacritic_custom_replacements( $custom_replacements = [] ) {
558 5
		if ( ! \is_array( $custom_replacements ) ) {
559 2
			$custom_replacements = $this->parse_diacritics_replacement_string( $custom_replacements );
560
		}
561
562 5
		$this->data['diacriticCustomReplacements'] = self::array_map_assoc( function( $key, $replacement ) {
563 5
			$key         = \strip_tags( \trim( $key ) );
564 5
			$replacement = \strip_tags( \trim( $replacement ) );
565
566 5
			if ( ! empty( $key ) && ! empty( $replacement ) ) {
567 3
				return [ $key => $replacement ];
568
			} else {
569 2
				return [];
570
			}
571 5
		}, $custom_replacements );
572
573 5
		$this->update_diacritics_replacement_arrays();
574 5
	}
575
576
	/**
577
	 * Parses a custom diacritics replacement string into an array.
578
	 *
579
	 * @param string $custom_replacements A string formatted `"needle"=>"replacement","needle"=>"replacement",...
580
	 *
581
	 * @return array
582
	 */
583
	private function parse_diacritics_replacement_string( $custom_replacements ) {
584 2
		return self::array_map_assoc( function( $key, $replacement ) {
585
586
			// Account for single and double quotes in keys ...
587 2
			if ( \preg_match( '/("|\')((?:(?!\1).)+)(?:\1\s*=>)/', $replacement, $match ) ) {
588 2
				$key = $match[2];
589
			}
590
591
			// ... and values.
592 2
			if ( \preg_match( '/(?:=>\s*("|\'))((?:(?!\1).)+)(?:\1)/', $replacement, $match ) ) {
593 2
				$replacement = $match[2];
594
			}
595
596 2
			return [ $key => $replacement ];
597 2
		}, \preg_split( '/,/', $custom_replacements, -1, PREG_SPLIT_NO_EMPTY ) );
0 ignored issues
show
Bug introduced by
It seems like preg_split('/,/', $custo...hy\PREG_SPLIT_NO_EMPTY) can also be of type false; however, parameter $array of PHP_Typography\Settings::array_map_assoc() does only seem to accept array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

597
		}, /** @scrutinizer ignore-type */ \preg_split( '/,/', $custom_replacements, -1, PREG_SPLIT_NO_EMPTY ) );
Loading history...
598
	}
599
600
	/**
601
	 * Provides an array_map implementation with control over resulting array's keys.
602
	 *
603
	 * Based on https://gist.github.com/jasand-pereza/84ecec7907f003564584.
604
	 *
605
	 * @since 6.0.0
606
	 *
607
	 * @param  callable $callback A callback function that needs to return [ $key => $value ] pairs.
608
	 * @param  array    $array    The array.
609
	 *
610
	 * @return array
611
	 */
612 2
	protected static function array_map_assoc( callable $callback, array $array ) {
613 2
		$new = [];
614
615 2
		foreach ( $array as $k => $v ) {
616 2
			$u = $callback( $k, $v );
617
618 2
			if ( ! empty( $u ) ) {
619 2
				$new[ \key( $u ) ] = \current( $u );
620
			}
621
		}
622
623 2
		return $new;
624
	}
625
626
	/**
627
	 * Update the pattern and replacement arrays in $settings['diacriticReplacement'].
628
	 *
629
	 * Should be called whenever a new diacritics replacement language is selected or
630
	 * when the custom replacements are updated.
631
	 */
632 6
	private function update_diacritics_replacement_arrays() {
633 6
		$patterns     = [];
634 6
		$replacements = [];
635
636 6
		if ( ! empty( $this->data['diacriticCustomReplacements'] ) ) {
637 3
			$this->parse_diacritics_rules( $this->data['diacriticCustomReplacements'], $patterns, $replacements );
638
		}
639 6
		if ( ! empty( $this->data['diacriticWords'] ) ) {
640 1
			$this->parse_diacritics_rules( $this->data['diacriticWords'], $patterns, $replacements );
641
		}
642
643 6
		$this->data['diacriticReplacement'] = [
644 6
			'patterns'     => $patterns,
645 6
			'replacements' => $replacements,
646
		];
647 6
	}
648
649
	/**
650
	 * Parse an array of diacritics rules.
651
	 *
652
	 * @param array $diacritics_rules The rules ( $word => $replacement ).
653
	 * @param array $patterns         Resulting patterns. Passed by reference.
654
	 * @param array $replacements     Resulting replacements. Passed by reference.
655
	 */
656 4
	private function parse_diacritics_rules( array $diacritics_rules, array &$patterns, array &$replacements ) {
657
658 4
		foreach ( $diacritics_rules as $needle => $replacement ) {
659 4
			$patterns[]              = '/\b(?<!\w[' . U::NO_BREAK_SPACE . U::SOFT_HYPHEN . '])' . $needle . '\b(?![' . U::NO_BREAK_SPACE . U::SOFT_HYPHEN . ']\w)/u';
660 4
			$replacements[ $needle ] = $replacement;
661
		}
662 4
	}
663
664
	/**
665
	 * Enables/disables replacement of (r) (c) (tm) (sm) (p) (R) (C) (TM) (SM) (P) with ® © ™ ℠ ℗.
666
	 *
667
	 * @param bool $on Optional. Default true.
668
	 */
669 1
	public function set_smart_marks( $on = true ) {
670 1
		$this->data['smartMarks'] = $on;
671 1
	}
672
673
	/**
674
	 * Enables/disables proper mathematical symbols.
675
	 *
676
	 * @param bool $on Optional. Default true.
677
	 */
678 1
	public function set_smart_math( $on = true ) {
679 1
		$this->data['smartMath'] = $on;
680 1
	}
681
682
	/**
683
	 * Enables/disables replacement of 2^2 with 2<sup>2</sup>
684
	 *
685
	 * @param bool $on Optional. Default true.
686
	 */
687 1
	public function set_smart_exponents( $on = true ) {
688 1
		$this->data['smartExponents'] = $on;
689 1
	}
690
691
	/**
692
	 * Enables/disables replacement of 1/4 with <sup>1</sup>&#8260;<sub>4</sub>.
693
	 *
694
	 * @param bool $on Optional. Default true.
695
	 */
696 1
	public function set_smart_fractions( $on = true ) {
697 1
		$this->data['smartFractions'] = $on;
698 1
	}
699
700
	/**
701
	 * Enables/disables replacement of 1st with 1<sup>st</sup>.
702
	 *
703
	 * @param bool $on Optional. Default true.
704
	 */
705 1
	public function set_smart_ordinal_suffix( $on = true ) {
706 1
		$this->data['smartOrdinalSuffix'] = $on;
707 1
	}
708
709
	/**
710
	 * Enables/disables forcing single character words to next line with the insertion of &nbsp;.
711
	 *
712
	 * @param bool $on Optional. Default true.
713
	 */
714 1
	public function set_single_character_word_spacing( $on = true ) {
715 1
		$this->data['singleCharacterWordSpacing'] = $on;
716 1
	}
717
718
	/**
719
	 * Enables/disables fraction spacing.
720
	 *
721
	 * @param bool $on Optional. Default true.
722
	 */
723 1
	public function set_fraction_spacing( $on = true ) {
724 1
		$this->data['fractionSpacing'] = $on;
725 1
	}
726
727
	/**
728
	 * Enables/disables keeping units and values together with the insertion of &nbsp;.
729
	 *
730
	 * @param bool $on Optional. Default true.
731
	 */
732 1
	public function set_unit_spacing( $on = true ) {
733 1
		$this->data['unitSpacing'] = $on;
734 1
	}
735
736
	/**
737
	 * Enables/disables numbered abbreviations like "ISO 9000" together with the insertion of &nbsp;.
738
	 *
739
	 * @param bool $on Optional. Default true.
740
	 */
741 1
	public function set_numbered_abbreviation_spacing( $on = true ) {
742 1
		$this->data['numberedAbbreviationSpacing'] = $on;
743 1
	}
744
745
	/**
746
	 * Enables/disables extra whitespace before certain punction marks, as is the French custom.
747
	 *
748
	 * @since 6.0.0 The default value is now `false`.`
749
	 *
750
	 * @param bool $on Optional. Default false.
751
	 */
752 1
	public function set_french_punctuation_spacing( $on = false ) {
753 1
		$this->data['frenchPunctuationSpacing'] = $on;
754 1
	}
755
756
	/**
757
	 * Sets the list of units to keep together with their values.
758
	 *
759
	 * @param string|array $units A comma separated list or an array of units.
760
	 */
761 1
	public function set_units( $units = [] ) {
762 1
		$this->data['units'] = Strings::maybe_split_parameters( $units );
763 1
		$this->update_unit_pattern( $this->data['units'] );
764 1
	}
765
766
	/**
767
	 * Update components and pattern for matching both standard and custom units.
768
	 *
769
	 * @param array $units An array of unit names.
770
	 */
771 1
	private function update_unit_pattern( array $units ) {
772
		// Update components & regex pattern.
773 1
		foreach ( $units as $index => $unit ) {
774
			// Escape special chars.
775 1
			$units[ $index ] = \preg_replace( '#([\[\\\^\$\.\|\?\*\+\(\)\{\}])#', '\\\\$1', $unit );
776
		}
777 1
		$this->custom_units  = \implode( '|', $units );
778 1
		$this->custom_units .= ( $this->custom_units ) ? '|' : '';
779 1
	}
780
781
	/**
782
	 * Enables/disables wrapping of Em and En dashes are in thin spaces.
783
	 *
784
	 * @param bool $on Optional. Default true.
785
	 */
786 1
	public function set_dash_spacing( $on = true ) {
787 1
		$this->data['dashSpacing'] = $on;
788 1
	}
789
790
	/**
791
	 * Enables/disables removal of extra whitespace characters.
792
	 *
793
	 * @param bool $on Optional. Default true.
794
	 */
795 1
	public function set_space_collapse( $on = true ) {
796 1
		$this->data['spaceCollapse'] = $on;
797 1
	}
798
799
	/**
800
	 * Enables/disables widow handling.
801
	 *
802
	 * @param bool $on Optional. Default true.
803
	 */
804 1
	public function set_dewidow( $on = true ) {
805 1
		$this->data['dewidow'] = $on;
806 1
	}
807
808
	/**
809
	 * Sets the maximum length of widows that will be protected.
810
	 *
811
	 * @param int $length Defaults to 5. Trying to set the value to less than 2 resets the length to the default.
812
	 */
813 1
	public function set_max_dewidow_length( $length = 5 ) {
814 1
		$length = ( $length > 1 ) ? $length : 5;
815
816 1
		$this->data['dewidowMaxLength'] = $length;
817 1
	}
818
819
	/**
820
	 * Sets the maximum number of words considered for dewidowing.
821
	 *
822
	 * @param int $number Defaults to 1. Only 1, 2 and 3 are valid.
823
	 */
824 1
	public function set_dewidow_word_number( $number = 1 ) {
825 1
		$number = ( $number > 3 || $number < 1 ) ? 1 : $number;
826
827 1
		$this->data['dewidowWordNumber'] = $number;
828 1
	}
829
830
	/**
831
	 * Sets the maximum length of pulled text to keep widows company.
832
	 *
833
	 * @param int $length Defaults to 5. Trying to set the value to less than 2 resets the length to the default.
834
	 */
835 1
	public function set_max_dewidow_pull( $length = 5 ) {
836 1
		$length = ( $length > 1 ) ? $length : 5;
837
838 1
		$this->data['dewidowMaxPull'] = $length;
839 1
	}
840
841
	/**
842
	 * Enables/disables wrapping at internal hard hyphens with the insertion of a zero-width-space.
843
	 *
844
	 * @param bool $on Optional. Default true.
845
	 */
846 1
	public function set_wrap_hard_hyphens( $on = true ) {
847 1
		$this->data['hyphenHardWrap'] = $on;
848 1
	}
849
850
	/**
851
	 * Enables/disables wrapping of urls.
852
	 *
853
	 * @param bool $on Optional. Default true.
854
	 */
855 1
	public function set_url_wrap( $on = true ) {
856 1
		$this->data['urlWrap'] = $on;
857 1
	}
858
859
	/**
860
	 * Enables/disables wrapping of email addresses.
861
	 *
862
	 * @param bool $on Optional. Default true.
863
	 */
864 1
	public function set_email_wrap( $on = true ) {
865 1
		$this->data['emailWrap'] = $on;
866 1
	}
867
868
	/**
869
	 * Sets the minimum character requirement after an URL wrapping point.
870
	 *
871
	 * @param int $length Defaults to 5. Trying to set the value to less than 1 resets the length to the default.
872
	 */
873 1
	public function set_min_after_url_wrap( $length = 5 ) {
874 1
		$length = ( $length > 0 ) ? $length : 5;
875
876 1
		$this->data['urlMinAfterWrap'] = $length;
877 1
	}
878
879
	/**
880
	 * Enables/disables wrapping of ampersands in <span class="amp">.
881
	 *
882
	 * @param bool $on Optional. Default true.
883
	 */
884 1
	public function set_style_ampersands( $on = true ) {
885 1
		$this->data['styleAmpersands'] = $on;
886 1
	}
887
888
	/**
889
	 * Enables/disables wrapping caps in <span class="caps">.
890
	 *
891
	 * @param bool $on Optional. Default true.
892
	 */
893 1
	public function set_style_caps( $on = true ) {
894 1
		$this->data['styleCaps'] = $on;
895 1
	}
896
897
	/**
898
	 * Enables/disables wrapping of initial quotes in <span class="quo"> or <span class="dquo">.
899
	 *
900
	 * @param bool $on Optional. Default true.
901
	 */
902 1
	public function set_style_initial_quotes( $on = true ) {
903 1
		$this->data['styleInitialQuotes'] = $on;
904 1
	}
905
906
	/**
907
	 * Enables/disables wrapping of numbers in <span class="numbers">.
908
	 *
909
	 * @param bool $on Optional. Default true.
910
	 */
911 1
	public function set_style_numbers( $on = true ) {
912 1
		$this->data['styleNumbers'] = $on;
913 1
	}
914
915
	/**
916
	 * Enables/disables wrapping of punctiation and wide characters in <span class="pull-*">.
917
	 *
918
	 * @param bool $on Optional. Default true.
919
	 */
920 1
	public function set_style_hanging_punctuation( $on = true ) {
921 1
		$this->data['styleHangingPunctuation'] = $on;
922 1
	}
923
924
	/**
925
	 * Sets the list of tags where initial quotes and guillemets should be styled.
926
	 *
927
	 * @param string|array $tags A comma separated list or an array of tag names.
928
	 */
929 1
	public function set_initial_quote_tags( $tags = [ 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'blockquote', 'li', 'dd', 'dt' ] ) {
930
		// Make array if handed a list of tags as a string.
931 1
		if ( ! \is_array( $tags ) ) {
932 1
			$tags = \preg_split( '/[^a-z0-9]+/', $tags, -1, PREG_SPLIT_NO_EMPTY );
933
		}
934
935
		// Store the tag array inverted (with the tagName as its index for faster lookup).
936 1
		$this->data['initialQuoteTags'] = \array_change_key_case( \array_flip( $tags ), CASE_LOWER );
0 ignored issues
show
Bug introduced by
It seems like $tags can also be of type false; however, parameter $array of array_flip() does only seem to accept array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

936
		$this->data['initialQuoteTags'] = \array_change_key_case( \array_flip( /** @scrutinizer ignore-type */ $tags ), CASE_LOWER );
Loading history...
937 1
	}
938
939
	/**
940
	 * Enables/disables hyphenation.
941
	 *
942
	 * @param bool $on Optional. Default true.
943
	 */
944 1
	public function set_hyphenation( $on = true ) {
945 1
		$this->data['hyphenation'] = $on;
946 1
	}
947
948
	/**
949
	 * Sets the hyphenation pattern language.
950
	 *
951
	 * @param string $lang Has to correspond to a filename in 'lang'. Optional. Default 'en-US'.
952
	 */
953 8
	public function set_hyphenation_language( $lang = 'en-US' ) {
954 8
		if ( isset( $this->data['hyphenLanguage'] ) && $this->data['hyphenLanguage'] === $lang ) {
955 3
			return; // Bail out, no need to do anything.
956
		}
957
958 8
		$this->data['hyphenLanguage'] = $lang;
959 8
	}
960
961
	/**
962
	 * Sets the minimum length of a word that may be hyphenated.
963
	 *
964
	 * @param int $length Defaults to 5. Trying to set the value to less than 2 resets the length to the default.
965
	 */
966 1
	public function set_min_length_hyphenation( $length = 5 ) {
967 1
		$length = ( $length > 1 ) ? $length : 5;
968
969 1
		$this->data['hyphenMinLength'] = $length;
970 1
	}
971
972
	/**
973
	 * Sets the minimum character requirement before a hyphenation point.
974
	 *
975
	 * @param int $length Defaults to 3. Trying to set the value to less than 1 resets the length to the default.
976
	 */
977 1
	public function set_min_before_hyphenation( $length = 3 ) {
978 1
		$length = ( $length > 0 ) ? $length : 3;
979
980 1
		$this->data['hyphenMinBefore'] = $length;
981 1
	}
982
983
	/**
984
	 * Sets the minimum character requirement after a hyphenation point.
985
	 *
986
	 * @param int $length Defaults to 2. Trying to set the value to less than 1 resets the length to the default.
987
	 */
988 1
	public function set_min_after_hyphenation( $length = 2 ) {
989 1
		$length = ( $length > 0 ) ? $length : 2;
990
991 1
		$this->data['hyphenMinAfter'] = $length;
992 1
	}
993
994
	/**
995
	 * Enables/disables hyphenation of titles and headings.
996
	 *
997
	 * @param bool $on Optional. Default true.
998
	 */
999 1
	public function set_hyphenate_headings( $on = true ) {
1000 1
		$this->data['hyphenateTitle'] = $on;
1001 1
	}
1002
1003
	/**
1004
	 * Enables/disables hyphenation of words set completely in capital letters.
1005
	 *
1006
	 * @param bool $on Optional. Default true.
1007
	 */
1008 1
	public function set_hyphenate_all_caps( $on = true ) {
1009 1
		$this->data['hyphenateAllCaps'] = $on;
1010 1
	}
1011
1012
	/**
1013
	 * Enables/disables hyphenation of words starting with a capital letter.
1014
	 *
1015
	 * @param bool $on Optional. Default true.
1016
	 */
1017 1
	public function set_hyphenate_title_case( $on = true ) {
1018 1
		$this->data['hyphenateTitleCase'] = $on;
1019 1
	}
1020
1021
	/**
1022
	 * Enables/disables hyphenation of compound words (e.g. "editor-in-chief").
1023
	 *
1024
	 * @param bool $on Optional. Default true.
1025
	 */
1026 1
	public function set_hyphenate_compounds( $on = true ) {
1027 1
		$this->data['hyphenateCompounds'] = $on;
1028 1
	}
1029
1030
	/**
1031
	 * Sets custom word hyphenations.
1032
	 *
1033
	 * @param string|array $exceptions An array of words with all hyphenation points marked with a hard hyphen (or a string list of such words).
1034
	 *        In the latter case, only alphanumeric characters and hyphens are recognized. The default is empty.
1035
	 */
1036 2
	public function set_hyphenation_exceptions( $exceptions = [] ) {
1037 2
		$this->data['hyphenationCustomExceptions'] = Strings::maybe_split_parameters( $exceptions );
1038 2
	}
1039
1040
	/**
1041
	 * Retrieves a unique hash value for the current settings.
1042
	 *
1043
	 * @since 5.2.0 The new parameter $raw_output has been added.
1044
	 *
1045
	 * @param int  $max_length Optional. The maximum number of bytes returned (0 for unlimited). Default 16.
1046
	 * @param bool $raw_output Optional. Wether to return raw binary data for the hash. Default true.
1047
	 *
1048
	 * @return string A binary hash value for the current settings limited to $max_length.
1049
	 */
1050 1
	public function get_hash( $max_length = 16, $raw_output = true ) {
1051 1
		$hash = \md5( \json_encode( $this ), $raw_output );
1052
1053 1
		if ( $max_length < \strlen( $hash ) && $max_length > 0 ) {
1054 1
			$hash = \substr( $hash, 0, $max_length );
1055
		}
1056
1057 1
		return $hash;
1058
	}
1059
}
1060