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


PHP Host::get_properties_types方法代码示例

本文整理汇总了PHP中Host::get_properties_types方法的典型用法代码示例。如果您正苦于以下问题:PHP Host::get_properties_types方法的具体用法?PHP Host::get_properties_types怎么用?PHP Host::get_properties_types使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Host的用法示例。


在下文中一共展示了Host::get_properties_types方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: ossim_db

$db = new ossim_db();
$conn = $db->connect();
$ip = GET('ip');
$tree = GET('tree');
ossim_valid($ip, OSS_IP_ADDR, 'illegal:' . _("Ip Address"));
$length_name = !empty($_GET['length_name']) ? GET('length_name') : 40;
if (ossim_error()) {
    $ossim_error = true;
}
$image_url = "../../pixmaps/theme/";
$icon1 = $image_url . 'any.png';
$icon2 = $image_url . 'ltError.gif';
$empty_tree = "[{title: '<span class=\\'size12n\\'>" . _("Properties") . "</span>', key:'0', isFolder:true, icon:'{$icon1}', hideCheckbox: true, \n\t\tchildren:[{title: '<span>" . _("No data found") . "</span>', addClass:'bold_red', key:'load_error', isFolder:false, hideCheckbox: true, icon:'{$icon2}'}]}]";
switch ($tree) {
    case "tree_container_1":
        $properties_types = Host::get_properties_types($conn);
        $properties = Host::get_host_properties($conn, $ip, '', 'ord, date DESC');
        $grouped_properties = array();
        $services_list = Host_services::get_ip_data($conn, $ip, '1');
        if (count($properties_types) == 0 || $ossim_error) {
            echo $empty_tree;
            exit;
        }
        foreach ($properties_types as $k => $v) {
            if ($v['name'] != 'Service') {
                $grouped_properties[$v['name'] . "###" . $v['id'] . "###" . $v['description']] = array();
            }
        }
        if (count($properties) > 0) {
            foreach ($properties as $k => $v) {
                $grouped_properties[ucwords($v['property']) . "###" . $v['property_ref'] . "###" . $v['description']][] = array("id" => $v['id'], "sensor" => $v['sensor'], "date" => $v['date'], "property_id" => $v['property_ref'], "property" => $v['property'], "source_ref" => $v['source_id'], "source" => $v['source'], "value" => $v['value'], "extra" => $v['extra'], "anom" => $v['anom']);
开发者ID:jhbsz,项目名称:ossimTest,代码行数:31,代码来源:draw_properties_tree.php

示例2: _

            ?>
										<td class="tableServices_t1" bgcolor="<?php 
            echo $bgcolor;
            ?>
">
											<?php 
            if ($services['anom'] == 1) {
                ?>
<img src="../pixmaps/warning.png" title="<?php 
                echo _('Anomaly detection');
                ?>
" /><?php 
            }
            ?>
											<?php 
            $propertyName = Host::get_properties_types($conn, $services['property_ref']);
            echo $propertyName[0]['description'];
            ?>
										</td>
										
										<td class="tableServices_t2" bgcolor="<?php 
            echo $bgcolor;
            ?>
">
											<?php 
            if (!empty($services['sensor'])) {
                echo _('Sensor') . ': ' . $services['sensor'];
                ?>
<br /><?php 
            }
            ?>
开发者ID:jhbsz,项目名称:ossimTest,代码行数:31,代码来源:host_report_inventory.php


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