private PoStreamReader::shortenComments($comment)
Generates a short, one-string version of the passed comment array.
Parameters
$comment: An array of strings containing a comment.
Return value
Short one-string version of the comment.
File
- core/lib/Drupal/Component/Gettext/PoStreamReader.php, line 580
Class
- PoStreamReader
- Implements Gettext PO stream reader.
Namespace
Drupal\Component\Gettext
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 | private function shortenComments( $comment ) { $comm = '' ; while ( count ( $comment )) { $test = $comm . substr ( array_shift ( $comment ), 1) . ', ' ; if ( strlen ( $comm ) < 130) { $comm = $test ; } else { break ; } } return trim( substr ( $comm , 0, -2)); } |
Please login to continue.