Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 97 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 97 Rev 287
Line 221... Line 221...
221
    }
221
    }
Line 222... Line 222...
222
    
222
    
223
    public static function formaterChaineVersClasseCss($chaine) {
223
    public static function formaterChaineVersClasseCss($chaine) {
224
    	return trim(str_replace(' ','_',$chaine));
224
    	return trim(str_replace(' ','_',$chaine));
-
 
225
    }
-
 
226
       
-
 
227
    public static function tronquerChaineSansCouperMot($chaine, $longueur = 120) {
-
 
228
    $retour = "";
-
 
229
    	if (strlen ($chaine) < $longueur) {
-
 
230
    	$retour = $chaine;
-
 
231
    	} elseif (preg_match ("/(.{1,$longueur})\s./ms", $chaine, $match)) {
-
 
232
    	$retour = $match [1] . "...";
-
 
233
    	} else {
-
 
234
    	$retour = substr ($chaine, 0, $longueur) . "...";
-
 
235
    	}
-
 
236
    	return $retour;
Line 225... Line 237...
225
    }
237
    }
226
   
238
   
227
    protected function chargerPiedDePage() {
239
    protected function chargerPiedDePage() {
228
        $donnees['appli'] = Application::getInfo();
240
        $donnees['appli'] = Application::getInfo();