Lines Matching defs:title
241 * Creates a XHTML valid linkid from a given headline title
243 * @param string $title The headline title
245 * @return string the title
249 function sectionID($title, &$check)
251 $title = str_replace([':', '.'], '', cleanID($title));
252 $new = ltrim($title, '0123456789_-');
254 $title = 'section' . preg_replace('/[^0-9]+/', '', $title); //keep numbers from headline
256 $title = $new;
261 $candidateTitle = $title;
263 $candidateTitle = $title . ++$suffix;
268 return $title;