Elgg  Version 2.3
friendlytitle.php
Go to the documentation of this file.
1 <?php
10 $title = $vars['title'];
11 
12 //$title = iconv('UTF-8', 'ASCII//TRANSLIT', $title);
13 $title = preg_replace("/[^\w ]/","",$title);
14 $title = str_replace(" ","-",$title);
15 $title = str_replace("--","-",$title);
16 $title = trim($title);
17 $title = strtolower($title);
18 
19 echo $title;
$title
Friendly title Makes a URL-friendly title.
$vars['entity']
elgg echo
Translates a string.
Definition: languages.js:48