summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/pkg_mgr.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-12-15 17:36:58 +0545
committerPhil Davis <phil.davis@inf.org>2015-12-15 17:36:58 +0545
commit0f649c975d91ff2fd792bd1b8adf93cf6138c9c5 (patch)
tree51780ad0f6d0422a96d807512dddbb134bab1e61 /src/usr/local/www/pkg_mgr.php
parent5d527ce6126e14cfd9856b60d22f48caf647c66c (diff)
downloadpfsense-0f649c975d91ff2fd792bd1b8adf93cf6138c9c5.zip
pfsense-0f649c975d91ff2fd792bd1b8adf93cf6138c9c5.tar.gz
Code style pkg
Diffstat (limited to 'src/usr/local/www/pkg_mgr.php')
-rw-r--r--src/usr/local/www/pkg_mgr.php58
1 files changed, 33 insertions, 25 deletions
diff --git a/src/usr/local/www/pkg_mgr.php b/src/usr/local/www/pkg_mgr.php
index 7c94212..0e008e6 100644
--- a/src/usr/local/www/pkg_mgr.php
+++ b/src/usr/local/www/pkg_mgr.php
@@ -72,8 +72,8 @@ require_once("guiconfig.inc");
require_once("pkg-utils.inc");
/* if upgrade in progress, alert user */
-if(is_subsystem_dirty('packagelock')) {
- $pgtitle = array(gettext("System"),gettext("Package Manager"));
+if (is_subsystem_dirty('packagelock')) {
+ $pgtitle = array(gettext("System"), gettext("Package Manager"));
include("head.inc");
print_info_box_np("Please wait while packages are reinstalled in the background.");
include("foot.inc");
@@ -82,7 +82,7 @@ if(is_subsystem_dirty('packagelock')) {
$pkg_info = get_pkg_info();
-$pgtitle = array(gettext("System"),gettext("Package Manager"),gettext("Available Packages"));
+$pgtitle = array(gettext("System"), gettext("Package Manager"), gettext("Available Packages"));
include("head.inc");
@@ -91,7 +91,7 @@ $tab_array[] = array(gettext("Available Packages"), true, "pkg_mgr.php");
$tab_array[] = array(gettext("Installed Packages"), false, "pkg_mgr_installed.php");
display_top_tabs($tab_array);
-if($pkg_info) {
+if ($pkg_info) {
//Check categories
$categories=array();
foreach ($pkg_info as $pkg_data) {
@@ -108,32 +108,34 @@ if($pkg_info) {
$categories_max_display=($g['pkg_categories_max_display'] ? $g['pkg_categories_max_display'] : 6);
/* check selected category or define default category to show */
- if (isset($_REQUEST['category']))
+ if (isset($_REQUEST['category'])) {
$menu_category = $_REQUEST['category'];
- else if (isset($g['pkg_default_category']))
+ } else if (isset($g['pkg_default_category'])) {
$menu_category = $g['pkg_default_category'];
- else
+ } else {
$menu_category = "All";
+ }
$menu_category = (isset($_REQUEST['category']) ? $_REQUEST['category'] : "All");
$show_category = ($menu_category == "Other" || $menu_category == "All");
- $tab_array[] = array(gettext("All"), $menu_category=="All" ? true : false, "pkg_mgr.php?category=All");
+ $tab_array[] = array(gettext("All"), $menu_category == "All" ? true : false, "pkg_mgr.php?category=All");
foreach ($categories as $category => $c_count) {
if ($c_count >= $categories_min_count && $cm_count <= $categories_max_display) {
- $tab_array[] = array(gettext($category) , $menu_category==$category ? true : false, "pkg_mgr.php?category={$category}");
+ $tab_array[] = array(gettext($category) , $menu_category == $category ? true : false, "pkg_mgr.php?category={$category}");
$visible_categories[]=$category;
$cm_count++;
}
}
- $tab_array[] = array(gettext("Other Categories"), $menu_category=="Other" ? true : false, "pkg_mgr.php?category=Other");
+ $tab_array[] = array(gettext("Other Categories"), $menu_category == "Other" ? true : false, "pkg_mgr.php?category=Other");
// if (count($categories) > 1)
// display_top_tabs($tab_array);
}
-if(!$pkg_info || !is_array($pkg_info)):?>
+if (!$pkg_info || !is_array($pkg_info)):
+?>
<div class="alert alert-warning">
<?=gettext("There are currently no packages available for installation.")?>
</div>
@@ -189,7 +191,7 @@ if(!$pkg_info || !is_array($pkg_info)):?>
<tbody>
<?php
- foreach($pkg_info as $index):
+ foreach ($pkg_info as $index):
if (isset($index['installed'])) {
continue;
}
@@ -209,26 +211,32 @@ if(!$pkg_info || !is_array($pkg_info)):?>
</td>
<?php
- if (!$g['disablepackagehistory']):?>
+ if (!$g['disablepackagehistory']):
+?>
<td>
<?=htmlspecialchars($index['version'])?>
</td>
<?php
-endif;
+ endif;
?>
<td>
<?=$index['desc']?>
</td>
<td>
<a title="<?=gettext("Click to install")?>" href="pkg_mgr_install.php?id=<?=$index['name']?>" class="btn btn-success btn-sm">install</a>
-<?php if(!$g['disablepackageinfo'] && $index['pkginfolink'] && $index['pkginfolink'] != $index['www']):?>
+<?php
+ if (!$g['disablepackageinfo'] && $index['pkginfolink'] && $index['pkginfolink'] != $index['www']):
+?>
<a target="_blank" title="<?=gettext("View more information")?>" href="<?=htmlspecialchars($index['pkginfolink'])?>" class="btn btn-default btn-sm">info</a>
-<?php endif;?>
+<?php
+ endif;
+?>
</td>
</tr>
<?php
endforeach;
-endif;?>
+endif;
+?>
</tbody>
</table>
</div>
@@ -236,25 +244,25 @@ endif;?>
<script type="text/javascript">
//<![CDATA[
-events.push(function(){
+events.push(function() {
// Initial state & toggle icons of collapsed panel
- $('.panel-heading a[data-toggle="collapse"]').each(function (idx, el){
+ $('.panel-heading a[data-toggle="collapse"]').each(function (idx, el) {
var body = $(el).parents('.panel').children('.panel-body')
var isOpen = body.hasClass('in');
$(el).children('i').toggleClass('fa-plus-circle', !isOpen);
$(el).children('i').toggleClass('fa-minus-circle', isOpen);
- body.on('shown.bs.collapse', function(){
+ body.on('shown.bs.collapse', function() {
$(el).children('i').toggleClass('fa-minus-circle', true);
$(el).children('i').toggleClass('fa-plus-circle', false);
});
});
// Make these controls plain buttons
- $("#btnsearch").prop('type' ,'button');
- $("#btnclear").prop('type' ,'button');
+ $("#btnsearch").prop('type', 'button');
+ $("#btnclear").prop('type', 'button');
// Search for a term in the package name and/or description
$("#btnsearch").click(function() {
@@ -268,8 +276,8 @@ events.push(function(){
descr = $tds.eq(2).text().trim().toLowerCase();
regexp = new RegExp(searchstr);
- if(searchstr.length > 0) {
- if( !(regexp.test(shortname) && (where != 1)) && !(regexp.test(descr) && (where != 0))) {
+ if (searchstr.length > 0) {
+ if (!(regexp.test(shortname) && (where != 1)) && !(regexp.test(descr) && (where != 0))) {
$(this).hide();
} else {
$(this).show();
@@ -293,7 +301,7 @@ events.push(function(){
// Hitting the enter key will do the same as clicking the search button
$("#searchstr").on("keyup", function (event) {
- if (event.keyCode==13) {
+ if (event.keyCode == 13) {
$("#btnsearch").get(0).click();
}
});
OpenPOWER on IntegriCloud