mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 15:05:19 +02:00
Adds support for PHP8.0, dropping support for PHP7.0 and below. Backwards incompatible changes: - Dropped support for php asp tags in templates (removed from php since php7.0) - Dropped deprecated API calls that where only accessible through SmartyBC - Dropped support for {php} and {include_php} tags and embedded PHP in templates. Embedded PHP will now be passed through as is. - Removed all PHP_VERSION_ID and compare_version checks and conditional code blocks that are now no longer required - Dropped deprecated SMARTY_RESOURCE_CHAR_SET and SMARTY_RESOURCE_DATE_FORMAT constants - Dropped deprecated Smarty::muteExpectedErrors and Smarty::unmuteExpectedErrors API methods - Dropped deprecated $smarty->getVariable() method. Use $smarty->getTemplateVars() instead. - $smarty->registerResource() no longer accepts an array of callback functions See the changelog for more details. Switched CI from Travis to Github CI.
72 lines
2.3 KiB
PHP
72 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Smarty plugin
|
|
*
|
|
* @package Smarty
|
|
* @subpackage PluginsModifier
|
|
*/
|
|
/**
|
|
* Smarty wordwrap modifier plugin
|
|
* Type: modifier
|
|
* Name: mb_wordwrap
|
|
* Purpose: Wrap a string to a given number of characters
|
|
*
|
|
* @link https://php.net/manual/en/function.wordwrap.php for similarity
|
|
*
|
|
* @param string $str the string to wrap
|
|
* @param int $width the width of the output
|
|
* @param string $break the character used to break the line
|
|
* @param boolean $cut ignored parameter, just for the sake of
|
|
*
|
|
* @return string wrapped string
|
|
* @author Rodney Rehm
|
|
*/
|
|
function smarty_modifier_mb_wordwrap($str, $width = 75, $break = "\n", $cut = false)
|
|
{
|
|
// break words into tokens using white space as a delimiter
|
|
$tokens = preg_split('!(\s)!S' . Smarty::$_UTF8_MODIFIER, $str, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE);
|
|
$length = 0;
|
|
$t = '';
|
|
$_previous = false;
|
|
$_space = false;
|
|
foreach ($tokens as $_token) {
|
|
$token_length = mb_strlen($_token, Smarty::$_CHARSET);
|
|
$_tokens = array($_token);
|
|
if ($token_length > $width) {
|
|
if ($cut) {
|
|
$_tokens = preg_split(
|
|
'!(.{' . $width . '})!S' . Smarty::$_UTF8_MODIFIER,
|
|
$_token,
|
|
-1,
|
|
PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE
|
|
);
|
|
}
|
|
}
|
|
foreach ($_tokens as $token) {
|
|
$_space = !!preg_match('!^\s$!S' . Smarty::$_UTF8_MODIFIER, $token);
|
|
$token_length = mb_strlen($token, Smarty::$_CHARSET);
|
|
$length += $token_length;
|
|
if ($length > $width) {
|
|
// remove space before inserted break
|
|
if ($_previous) {
|
|
$t = mb_substr($t, 0, -1, Smarty::$_CHARSET);
|
|
}
|
|
if (!$_space) {
|
|
// add the break before the token
|
|
if (!empty($t)) {
|
|
$t .= $break;
|
|
}
|
|
$length = $token_length;
|
|
}
|
|
} elseif ($token === "\n") {
|
|
// hard break must reset counters
|
|
$length = 0;
|
|
}
|
|
$_previous = $_space;
|
|
// add the token
|
|
$t .= $token;
|
|
}
|
|
}
|
|
return $t;
|
|
}
|