Add definition list helper to HTML class.

This commit is contained in:
Franz Liedke 2012-09-12 14:40:55 +03:00
parent 38562d5007
commit c7763a23bd
1 changed files with 22 additions and 0 deletions

View File

@ -348,6 +348,28 @@ private static function listing($type, $list, $attributes = array())
return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>'; return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>';
} }
/**
* Generate a definition list.
*
* @param array $list
* @param array $attributes
* @return string
*/
public static function dl($list, $attributes = array())
{
$html = '';
if (count($list) == 0) return $html;
foreach ($list as $term => $description)
{
$html .= '<dt>'.static::entities($term).'</dt>';
$html .= '<dd>'.static::entities($description).'</dd>';
}
return '<dl'.static::attributes($attributes).'>'.$html.'</'.$type.'>';
}
/** /**
* Build a list of HTML attributes from an array. * Build a list of HTML attributes from an array.
* *