コード例 #1
0
function bt_r_tag_begin($args = NULL)
{
    $id = bt_id($args);
    $out = '<div class="bibtech_bibliography" id="' . $id . "\">\n";
    $html = "";
    if (isset($args["ol"])) {
        $html .= '<ol class="bibtech_bibliography">';
    }
    if (isset($args["ul"])) {
        $html .= '<ul class="bibtech_bibliography">';
    }
    if (!isset($args["notitle"])) {
        $out .= '<h3 class="bibtech_headline"><span class="mw-headline">';
        $out .= bt_msg("bibliography");
        $out .= "</span></h3>\n";
    }
    // html list
    $out .= $html;
    return $out;
}
コード例 #2
0
function bt_r_entry_missing($arr)
{
    return bt_r_frm_err(bt_msg("missing") . ": " . $arr["ckey"]);
}