first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
if ($delivery->getCountriesArea() && $delivery->getCountriesArea()->getIsActive())
|
||||
{
|
||||
|
||||
if (strlen($delivery->getCountriesArea()->getName()) > 20) {
|
||||
|
||||
echo st_truncate_text($delivery->getCountriesArea()->getName(), '20', '...');
|
||||
|
||||
} else {
|
||||
|
||||
echo $delivery->getCountriesArea()->getName();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user