Exemplo n.º 1
0
echo gettext("RRD Profile");
?>
</label><br/>
                    <span><a href="../rrd_conf/new_rrd_conf_form.php"><?php 
echo gettext("Insert new profile");
?>
 ?</a></span>
                </th>
                <td class="left">
                    <select name="rrd_profile" id='rrd_profile' class='vfield'>
                        <option value="" selected='selected'><?php 
echo gettext("None");
?>
</option>
                        <?php 
foreach (RRD_Config::get_profile_list($conn) as $profile) {
    if (strcmp($profile, "global")) {
        $selected = $rrd_profile == $profile ? " selected='selected'" : '';
        echo "<option value=\"{$profile}\" {$selected}>{$profile}</option>\n";
    }
}
?>
                    </select>
                </td>
            </tr>

            <tr class="advanced" style="display:none;">
                <th><label for='threshold_c'><?php 
echo gettext("Threshold C");
?>
</label></th>