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


PHP filter_get_time_based_rule_status函数代码示例

本文整理汇总了PHP中filter_get_time_based_rule_status函数的典型用法代码示例。如果您正苦于以下问题:PHP filter_get_time_based_rule_status函数的具体用法?PHP filter_get_time_based_rule_status怎么用?PHP filter_get_time_based_rule_status使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: rule_columns_with_alias

	<?php 
        $alias = rule_columns_with_alias($filterent['source']['address'], pprint_port($filterent['source']['port']), $filterent['destination']['address'], pprint_port($filterent['destination']['port']));
        //build Schedule popup box
        $a_schedules =& $config['schedules']['schedule'];
        $schedule_span_begin = "";
        $schedule_span_end = "";
        $sched_caption_escaped = "";
        $sched_content = "";
        $schedstatus = false;
        $dayArray = array(gettext('Mon'), gettext('Tues'), gettext('Wed'), gettext('Thur'), gettext('Fri'), gettext('Sat'), gettext('Sun'));
        $monthArray = array(gettext('January'), gettext('February'), gettext('March'), gettext('April'), gettext('May'), gettext('June'), gettext('July'), gettext('August'), gettext('September'), gettext('October'), gettext('November'), gettext('December'));
        if ($config['schedules']['schedule'] != "" && is_array($config['schedules']['schedule'])) {
            $idx = 0;
            foreach ($a_schedules as $schedule) {
                if ($schedule['name'] == $filterent['sched']) {
                    $schedstatus = filter_get_time_based_rule_status($schedule);
                    foreach ($schedule['timerange'] as $timerange) {
                        $tempFriendlyTime = "";
                        $tempID = "";
                        $firstprint = false;
                        if ($timerange) {
                            $dayFriendly = "";
                            $tempFriendlyTime = "";
                            //get hours
                            $temptimerange = $timerange['hour'];
                            $temptimeseparator = strrpos($temptimerange, "-");
                            $starttime = substr($temptimerange, 0, $temptimeseparator);
                            $stoptime = substr($temptimerange, $temptimeseparator + 1);
                            if ($timerange['month']) {
                                $tempmontharray = explode(",", $timerange['month']);
                                $tempdayarray = explode(",", $timerange['day']);
开发者ID:ajiwo,项目名称:pfsense,代码行数:31,代码来源:firewall_rules.php

示例2: foreach

                      <td></td>
                    </tr>
                  </thead>
                  <tbody>
                    <?php 
$i = 0;
foreach ($a_schedules as $schedule) {
    ?>
                    <tr ondblclick="document.location='firewall_schedule_edit.php?id=<?php 
    echo $i;
    ?>
';">
                       <td>
                        <?php 
    echo $schedule['name'];
    if (filter_get_time_based_rule_status($schedule)) {
        ?>
                          <span data-toggle="tooltip" title="<?php 
        echo gettext("Schedule is currently active");
        ?>
" class="fa fa-clock-o"></span>
<?php 
    }
    ?>
                      </td>
                      <td>
                        <table class="table table-condensed table-striped">
<?php 
    foreach ($schedule['timerange'] as $timerange) {
        $firstprint = false;
        if ($timerange) {
开发者ID:8191,项目名称:opnsense-core,代码行数:31,代码来源:firewall_schedule.php


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