plugins\i18n\i18n.recentitems.tags.php
<?php
/* ====================
[BEGIN_COT_EXT]
Hooks=recentitems.recentpages.tags
[END_COT_EXT]
==================== */
/**
* Modifies recentitems loop tags
*
* @package I18n
* @copyright (c) Cotonti Team
* @license https://github.com/Cotonti/Cotonti/blob/master/License.txt
*/
defined('COT_CODE') or die('Wrong URL');
if ($i18n_notmain && !empty($pag['ipage_title']))
{
// Overwrite some tags
if ((int)$titlelength > 0 && mb_strlen($pag['ipage_title']) > $titlelength)
{
$pag['ipage_title'] = (cot_string_truncate($pag['ipage_title'], $titlelength, false)) . '...';
}
$recentitems->assign(array(
'PAGE_ROW_SHORTTITLE' => htmlspecialchars($pag['ipage_title'])
));
}