Exemplo n.º 1
0
 /**
  * Get the XHTML <title> tag
  * 
  * @param string $module  where is the translation for this title?
  * @param string $message what is the name of this translation?
  * @param array  $params  any parameters required by the translation
  * @param array  $attr    any additional attribtes to include in the tag
  * @return string the XHTML to send to the browser
  */
 public static function tag_title($module, $message, $params = array(), $attr = array())
 {
     return self::tag('title', $attr, XHTML::translation($module, $message, $params));
 }