Home
last modified time | relevance | path

Searched refs:textSpan (Results 1 – 1 of 1) sorted by relevance

/webtrees/app/Report/
H A DRightToLeftSupport.php407 …$textSpan = self::stripLrmRlm(substr($result, self::LENGTH_START + 3, $spanEnd - self::LENGTH_STAR…
408 if (I18N::scriptDirection(I18N::textScript($textSpan)) === 'rtl') {
524 * @param string $textSpan
529 private static function starredName(string $textSpan, string $direction): string argument
535 $starPos = strpos($textSpan, '*');
539 $trailingText = substr($textSpan, $starPos + 1);
540 $textSpan = substr($textSpan, 0, $starPos);
541 $wordStart = strrpos($textSpan, ' '); // Find the start of the word
543 $leadingText = substr($textSpan, 0, $wordStart + 1);
544 $wordText = substr($textSpan, $wordStart + 1);
[all …]