本文整理汇总了PHP中CTableInfo::addClass方法的典型用法代码示例。如果您正苦于以下问题:PHP CTableInfo::addClass方法的具体用法?PHP CTableInfo::addClass怎么用?PHP CTableInfo::addClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CTableInfo
的用法示例。
在下文中一共展示了CTableInfo::addClass方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: CCol
$lastDataHeader = new CCol(new CSpan(_x('Change', 'noun in latest data')), 'latest-data');
$lastDataHeader->setAttribute('title', _x('Change', 'noun in latest data'));
$checkAllCheckbox = new CCheckBox('all_items', null, "checkAll('" . $form->getName() . "', 'all_items', 'itemids');");
$checkAllCheckboxCol = new CCol($checkAllCheckbox, 'latest-checkbox');
if ($filter['showDetails']) {
$intervalHeader = new CCol(new CSpan(_('Interval')), 'latest-interval');
$intervalHeader->setAttribute('title', _('Interval'));
$historyHeader = new CCol(new CSpan(_('History')), 'latest-history');
$historyHeader->setAttribute('title', _('History'));
$trendsHeader = new CCol(new CSpan(_('Trends')), 'latest-trends');
$trendsHeader->setAttribute('title', _('Trends'));
$typeHeader = new CCol(new CSpan(_('Type')), 'latest-type');
$typeHeader->setAttribute('title', _('Type'));
$infoHeader = new CCol(new CSpan(_('Info')), 'latest-info');
$infoHeader->setAttribute('title', _('Info'));
$table->addClass('latest-details');
$table->setHeader(array(new CCol(new CDiv(null, 'app-list-toggle-all icon-plus-9x9')), $checkAllCheckboxCol, $hostHeader, $nameHeader, $intervalHeader, $historyHeader, $trendsHeader, $typeHeader, $lastCheckHeader, $lastValueHeader, $lastDataHeader, new CCol(null, 'latest-actions'), $infoHeader));
} else {
$table->setHeader(array(new CCol(new CDiv(null, 'app-list-toggle-all icon-plus-9x9')), $checkAllCheckboxCol, $hostHeader, $nameHeader, $lastCheckHeader, $lastValueHeader, $lastDataHeader, new CCol(null, 'latest-actions')));
}
$tab_rows = array();
foreach ($items as $key => $item) {
if (!$item['applications']) {
continue;
}
$lastHistory = isset($history[$item['itemid']][0]) ? $history[$item['itemid']][0] : null;
$prevHistory = isset($history[$item['itemid']][1]) ? $history[$item['itemid']][1] : null;
if (strpos($item['units'], ',') !== false) {
list($item['units'], $item['unitsLong']) = explode(',', $item['units']);
} else {
$item['unitsLong'] = '';