Ejemplo n.º 1
0
        echo $service['name'];
        ?>
</td>
                    <td><?php 
        echo $service['description'];
        ?>
</td>
                    <td>
                      <?php 
        echo get_service_status_icon($service, true, true);
        ?>
                      <?php 
        echo get_service_control_links($service);
        ?>
                      <?php 
        echo !empty(get_shortcut_by_service_name($service['name'])) ? get_shortcut_log_link($scut, true) : "";
        ?>
                    </td>
                </tr>
<?php 
    }
} else {
    ?>
                <tr>
                  <td colspan="3"> <?php 
    echo gettext("No services found");
    ?>
</td>
                </tr>
<?php 
}
Ejemplo n.º 2
0
        }
        if (empty($service['description'])) {
            $service['description'] = get_pkg_descr($service['name']);
        }
        echo "<tr><td class=\"listlr\" width=\"20%\">" . $service['name'] . "</td>\n";
        echo "<td class=\"listr\" width=\"55%\">" . $service['description'] . "</td>\n";
        // if service is running then listr else listbg
        $bgclass = null;
        if (get_service_status($service)) {
            $bgclass = "listr";
        } else {
            $bgclass = "listbg";
        }
        echo "<td class=\"" . $bgclass . "\" align=\"center\">" . get_service_status_icon($service, true, true) . "</td>\n";
        echo "<td valign=\"middle\" class=\"list nowrap\">" . get_service_control_links($service);
        $scut = get_shortcut_by_service_name($service['name']);
        if (!empty($scut)) {
            echo get_shortcut_main_link($scut, true, $service);
            echo get_shortcut_status_link($scut, true, $service);
            echo get_shortcut_log_link($scut, true);
        }
        echo "</td></tr>\n";
    }
} else {
    echo "<tr><td colspan=\"3\" align=\"center\">" . gettext("No services found") . " . </td></tr>\n";
}
?>
	</tbody>
</table>
</div>
</form>