示例#1
0
function smarty_function_display_notices($args, &$smarty)
{
    $inc_fields = isset($args['inc_fields']) ? $args['inc_fields'] : false;
    if (Pfw_Alert::hasNotice()) {
        $notices = Pfw_Alert::getNotices($inc_fields);
        $list = "<ul class=\"pfw-alert pfw-notice\">\n";
        foreach ($notices as $notice) {
            $list .= "<li>{$notice}</li>\n";
        }
        $list .= "</ul>";
        return $list;
    }
    return "";
}