本文整理汇总了PHP中CRow::SetClass方法的典型用法代码示例。如果您正苦于以下问题:PHP CRow::SetClass方法的具体用法?PHP CRow::SetClass怎么用?PHP CRow::SetClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRow
的用法示例。
在下文中一共展示了CRow::SetClass方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: CCol
}
array_push($new_row, new CCol(get_severity_description($row["severity"]), get_severity_style($row["severity"])));
$row["value"] = trim($row["value"], "\r\n");
// array_push($new_row,htmlspecialchars($row["value"]));
array_push($new_row, encode_log($row["value"]));
if (!isset($_REQUEST["plaintext"])) {
$crow = new CRow($new_row);
if (is_null($color_style) && is_array($_REQUEST["itemid"])) {
$min_color = 0x98;
$max_color = 0xf8;
$int_color = ($max_color - $min_color) / count($_REQUEST["itemid"]);
$int_color *= array_search($row["itemid"], $_REQUEST["itemid"]);
$int_color += $min_color;
$crow->AddOption("style", "background-color: " . sprintf("#%X%X%X", $int_color, $int_color, $int_color));
} else {
$crow->SetClass($color_style);
}
$crow->Show();
// to solve memory leak we call 'Show' method for each element
} else {
echo date("Y-m-d H:i:s", $row["clock"]);
echo "\t" . $row["clock"] . "\t" . htmlspecialchars($row["value"]) . "\n";
}
}
if (!isset($_REQUEST["plaintext"])) {
$table->ShowEnd();
} else {
echo "</pre>";
}
} else {
switch ($item_type) {