示例#1
0
文件: theme.php 项目: NaiRobley/Dabr
function theme_table_cell($contents, $header = false)
{
    if (is_array($contents)) {
        $value = $contents['data'];
        unset($contents['data']);
        $attributes = $contents;
    } else {
        $value = $contents;
        $attributes = false;
    }
    return "<span" . theme_attributes($attributes) . ">{$value}</span>";
}
示例#2
0
文件: theme.php 项目: novasarii/dabr
function theme_table_cell($contents, $header = FALSE)
{
    $celltype = $header ? 'th' : 'td';
    if (is_array($contents)) {
        $value = $contents['data'];
        unset($contents['data']);
        $attributes = $contents;
    } else {
        $value = $contents;
        $attributes = false;
    }
    return "<{$celltype}" . theme_attributes($attributes) . ">{$value}</{$celltype}>";
}