當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CRow::setClass方法代碼示例

本文整理匯總了PHP中CRow::setClass方法的典型用法代碼示例。如果您正苦於以下問題:PHP CRow::setClass方法的具體用法?PHP CRow::setClass怎麽用?PHP CRow::setClass使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CRow的用法示例。


在下文中一共展示了CRow::setClass方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: makeHeaders

 private function makeHeaders()
 {
     $c = 0;
     $tr = new CRow();
     $tr->addItem($this->fields['caption']);
     $tr->setClass('treeheader');
     unset($this->fields['caption']);
     foreach ($this->fields as $id => $caption) {
         $tr->addItem($caption);
         $fields[$c] = $id;
         $c++;
     }
     $this->fields = $fields;
     return $tr;
 }
開發者ID:phedders,項目名稱:zabbix,代碼行數:15,代碼來源:class.ctree.php

示例2: prepareRow

 public function prepareRow($item, $rowClass = NULL)
 {
     if (is_null($item)) {
         return NULL;
     }
     if (strtolower(get_class($item)) == 'ccol') {
         if (isset($this->header) && !isset($item->attributes['colspan'])) {
             $item->attributes['colspan'] = $this->colnum;
         }
         $item = new CRow($item, $rowClass);
     }
     if (strtolower(get_class($item)) == 'crow') {
         if (isset($rowClass)) {
             $item->setClass($rowClass);
         }
     } else {
         $item = new CRow($item, $rowClass);
     }
     if (!isset($item->attributes['class'])) {
         $item->setClass($this->rownum % 2 ? $this->oddRowClass : $this->evenRowClass);
     }
     return $item;
 }
開發者ID:phedders,項目名稱:zabbix,代碼行數:23,代碼來源:class.ctable.php

示例3: CCol

                 $row[] = $data['logeventid'] == 0 ? '-' : $data['logeventid'];
             }
         }
         $data['value'] = encode_log(trim($data['value'], "\r\n"));
         $row[] = new CCol($data['value'], 'pre');
         $crow = new CRow($row);
         if (is_null($color_style)) {
             $min_color = 0x98;
             $max_color = 0xf8;
             $int_color = ($max_color - $min_color) / count($_REQUEST['itemid']);
             $int_color *= array_search($data['itemid'], $_REQUEST['itemid']);
             $int_color += $min_color;
             $crow->setAttribute('style', 'background-color: ' . sprintf("#%X%X%X", $int_color, $int_color, $int_color));
         } else {
             if (!is_null($color_style)) {
                 $crow->setClass($color_style);
             }
         }
         $table->addRow($crow);
         // Plain Text
         if (!isset($_REQUEST['plaintext'])) {
             continue;
         }
         $ptData['body'][] = zbx_date2str(S_HISTORY_LOG_ITEM_PLAINTEXT, $data['clock']);
         $ptData['body'][] = "\t" . $data['clock'] . "\t" . htmlspecialchars($data['value']) . "\n";
     }
 } else {
     // NUMERIC, FLOAT
     $table = new CTableInfo();
     $table->setHeader(array(S_TIMESTAMP, S_VALUE));
     $options['sortfield'] = 'clock';
開發者ID:songyuanjie,項目名稱:zabbix-stats,代碼行數:31,代碼來源:history.php


注:本文中的CRow::setClass方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。