function theme_dl in Drupal for Facebook 5
Same name and namespace in other branches
- 5.2 fb_app.module \theme_dl()
3 theme calls to theme_dl()
File
- ./
fb_app.module, line 251 - Defines a custom node type that stores a facebook application configuration.
Code
function theme_dl($items) {
if (count($items)) {
$output = "<dl>\n";
foreach ($items as $term => $data) {
$output .= " <dt>{$term}</dt><dd>{$data}</dd>\n";
}
$output .= "</dl>\n";
return $output;
}
}