mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Added basic displaying of additional reuirements for apps.
This commit is contained in:
parent
b1284377ca
commit
e2fe39f469
1 changed files with 9 additions and 1 deletions
|
|
@ -147,6 +147,9 @@ class FDroid
|
||||||
case "antifeatures";
|
case "antifeatures";
|
||||||
$antifeatures=$el;
|
$antifeatures=$el;
|
||||||
break;
|
break;
|
||||||
|
case "requirements";
|
||||||
|
$requirements=$el;
|
||||||
|
break;
|
||||||
case "package":
|
case "package":
|
||||||
$thisapk=array();
|
$thisapk=array();
|
||||||
foreach($el->children() as $pel) {
|
foreach($el->children() as $pel) {
|
||||||
|
|
@ -216,7 +219,12 @@ class FDroid
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$out.="<p><b>License:</b> ".$license."</p>";
|
$out.="<p>";
|
||||||
|
$out.="<b>License:</b> ".$license;
|
||||||
|
if(isset($requirements)) {
|
||||||
|
$out.='<br /><b>Additional requirements:</b> '.$requirements;
|
||||||
|
}
|
||||||
|
$out.="</p>";
|
||||||
|
|
||||||
$out.="<p>";
|
$out.="<p>";
|
||||||
if(strlen($web)>0)
|
if(strlen($web)>0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue