Esempio n. 1
0
    </th>
</tr>
<br>
<br>
<table class="jaillist" style="width:100%">
<tr>
   <th></th>
   <th></th>
</tr>
<?

   $skipstop = $skip + 50;

   $totalCols = 3;

   $pkgoutput = syscache_ins_pkg_list($jail);

   if ( $jail == "#system" )
     $pbioutput = syscache_pbidb_list();
   else
     $pbioutput = syscache_pbidb_list("serverapps");

   $pkglist = explode(", ", $pkgoutput[0]);
   $pbilist = explode(", ", $pbioutput[0]);

   // Now loop through pbi origins
   $col=1;

   // Set the counter
   $curItem=0;
   $atEnd = true;
Esempio n. 2
0
    $hasService = true;
}
// Check if this app has config files to edit
$hasConfig = false;
if ($isPBI and file_exists($pbicdir . "/service-config.json")) {
    $hasConfig = true;
}
// Does this PBI have icons?
$hasIcons = false;
if ($onDesktop == "true" and $isPBI) {
    if (file_exists($pbicdir . "/xdg-desktop") or file_exists($pbicdir . "/xdg-menu")) {
        $hasIcons = true;
    }
}
// Check if this app is installed
$pkgoutput = syscache_ins_pkg_list("{$jail}");
$pkglist = explode(", ", $pkgoutput[0]);
if (array_search($pbiorigin, $pkglist) !== false) {
    $pbiInstalled = true;
} else {
    $pbiInstalled = false;
}
?>
   
<br>
<table class="pbidescription" style="width:<?php 
if ($deviceType == "computer") {
    echo "600px";
} else {
    echo "100%";
}