-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnc-ui-front.php
42 lines (35 loc) · 1.1 KB
/
nc-ui-front.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Main/Front page
*
*/
// load a jumbotron at the top
include_once ncGetLocalFile("nc-ui/ui-components/ui-front-jumbo.php");
// get info on existing and viewable networks
// display each using the code in ui-network-card
$mynetworks = $NCapi->listNetworks();
// get a set of elements that need markdown treatment
$md = [];
?>
<div class="container">
<div class="row">
<div class="col-sm-8">
<?php
for ($x = 0; $x < count($mynetworks); $x++) {
$netid = $mynetworks[$x]['id'];
$netname = $mynetworks[$x]['name'];
$nettitle = $mynetworks[$x]['title'];
$nettitleid = $mynetworks[$x]['title_id'];
$netabstract = $mynetworks[$x]['abstract'];
$netabstractid = $mynetworks[$x]['abstract_id'];
include "ui-components/ui-network-card.php";
$md[$netabstractid] = $netabstract;
$md[$nettitleid] = $nettitle;
}
?>
</div>
</div>
</div>
<?php
echo ncScriptObject("nc.md", $md);
?>