Newer
Older
<?php
/**
* Copyright Maarch since 2008 under licence GPLv3.
* See LICENCE.txt file at the root folder for more details.
* This file is part of Maarch software.
*
*/
/**
{
public static function normalize(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['string']);
ValidatorModel::stringType($aArgs, ['string']);
$a = 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûýýþÿŔŕ';
$b = 'aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr';
$string = utf8_decode($aArgs['string']);
$string = strtr($string, utf8_decode($a), $b);
$string = strtolower($string);
return utf8_encode($string);
}

Alex ORLUC
committed
public static function formatDate($date, $format = null)

Alex ORLUC
committed
{

Alex ORLUC
committed
}
if (!empty($format)) {
return $date->format($format);
}

Alex ORLUC
committed
}
ValidatorModel::notEmpty($aArgs, ['string']);
ValidatorModel::stringType($aArgs, ['string', 'charset']);
$aArgs['charset'] = 'utf-8';
}
$string = htmlentities($aArgs['string'], ENT_NOQUOTES, $aArgs['charset']);
$string = preg_replace('#\&([A-za-z])(?:uml|circ|tilde|acute|grave|cedil|ring)\;#', '\1', $string);
$string = preg_replace('#\&([A-za-z]{2})(?:lig)\;#', '\1', $string);
$string = preg_replace('#\&[^;]+\;#', '', $string);
return $string;
}
public static function htmlWasher($html)
$html = str_replace("<br/>", "\\n", $html);
$html = str_replace("<br />", "\\n", $html);
$html = str_replace("<br/>", "\\n", $html);
$html = str_replace(" ", " ", $html);
$html = str_replace("é", "\u00e9", $html);
$html = str_replace("è", "\u00e8", $html);
$html = str_replace("ê", "\00ea", $html);
$html = str_replace("à", "\u00e0", $html);
$html = str_replace("â", "\u00e2", $html);
$html = str_replace("î", "\u00ee", $html);
$html = str_replace("ô", "\u00f4", $html);
$html = str_replace("û", "\u00fb", $html);
$html = str_replace("´", "\u0027", $html);
$html = str_replace("°", "\u00b0", $html);
$html = str_replace("’", "\u2019", $html);
public static function cutString(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['string']);
ValidatorModel::stringType($aArgs, ['string']);
ValidatorModel::intType($aArgs, ['max']);
$string = $aArgs['string'];
$max = $aArgs['max'];
if (strlen($string) >= $max) {
$string = substr($string, 0, $max);
$espace = strrpos($string, " ");
$string = substr($string, 0, $espace)."...";
return $string;
} else {
return $string;
}
}