Pārlūkot izejas kodu

Utils : limitTextByLength

develop
Guillaume pirms 3 gadiem
vecāks
revīzija
fae951b10c
1 mainītis faili ar 9 papildinājumiem un 0 dzēšanām
  1. +9
    -0
      ShopBundle/Services/Utils.php

+ 9
- 0
ShopBundle/Services/Utils.php Parādīt failu

@@ -87,6 +87,15 @@ class Utils
return $text;
}

public function limitTextByLength($text, $length)
{
if(strlen($text) > $length) {
$text = substr($text, 0, $length).' ... ' ;
}

return $text ;
}

function truncateHtml($text, $length = 100, $ending = '...', $exact = false, $considerHtml = true)
{
if ($considerHtml) {

Notiek ielāde…
Atcelt
Saglabāt