summaryrefslogtreecommitdiff
path: root/core/views/admin_dashboard_blocks.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/views/admin_dashboard_blocks.html.php')
-rw-r--r--core/views/admin_dashboard_blocks.html.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/views/admin_dashboard_blocks.html.php b/core/views/admin_dashboard_blocks.html.php
new file mode 100644
index 00000000..56a6ab07
--- /dev/null
+++ b/core/views/admin_dashboard_blocks.html.php
@@ -0,0 +1,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(); ?>