当前位置: 首页>>代码示例>>PHP>>正文


PHP CTableInfo::addClass方法代码示例

本文整理汇总了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'] = '';
开发者ID:TonywalkerCN,项目名称:Zabbix,代码行数:31,代码来源:latest.php


注:本文中的CTableInfo::addClass方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。