-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathview.php
36 lines (33 loc) · 1.17 KB
/
view.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
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
require_once('class.ThemePage.php');
require_once('class.ThemeDB.php');
$page = new ThemePage('Burning Flipside - Registration');
$page->addWellKnownJS(JS_DATATABLE, false);
$page->addWellKnownCSS(CSS_DATATABLE);
$page->body .= '
<div id="content">
<div class="card">
<div class="card-header" role="tab" id="themeHeader">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#tc" aria-expanded="true" aria-controls="tc">Themes</a>
</h4>
</div>
<div id="tc" class="collapse show" role="tabpanel" aria-labelledby="themeHeader">
<div class="card-body">
<table class="table" id="themeTable">
<thead>
<tr>
<th>Name</th>
<th>Presenting</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</idv>
</div>
</div>';
$page->printPage();
?>