blob: 56a6ab073ebec2d0b080c998100f9dfd8deb3174 (
plain)
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
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gAdminDashboardBlocks">
<table border="1">
<tr>
<th> <?= t("Main") ?> </th>
<th> <?= t("Sidebar") ?> </th>
</tr>
<? foreach ($available as $module_name => $block_list): ?>
<? foreach ($block_list as $id => $title): ?>
<tr>
<td>
<?= $title ?>
</td>
<td>
<option>
</option>
</td>
</tr>
<? endforeach ?>
<? endforeach ?>
</table>
</div>
<? printf("<pre>%s</pre>",print_r($available,1));flush(); ?>
<? printf("<pre>%s</pre>",print_r($displayed,1));flush(); ?>
|