diff options
Diffstat (limited to 'views/default/tidypics')
-rw-r--r-- | views/default/tidypics/settings.php | 13 | ||||
-rw-r--r-- | views/default/tidypics/stats.php | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/views/default/tidypics/settings.php b/views/default/tidypics/settings.php new file mode 100644 index 000000000..e69d6d306 --- /dev/null +++ b/views/default/tidypics/settings.php @@ -0,0 +1,13 @@ +<?php
+
+ echo elgg_view('output/longtext', array('value' => elgg_echo("tidypics:admin:instructions")));
+
+ global $CONFIG;
+ $system_url = $CONFIG->wwwroot . 'mod/tidypics/system.php';
+?>
+<p>
+<a href="<?php echo $system_url; ?>">Run Server Analysis</a>
+</p>
+<?php
+ echo elgg_view("tidypics/forms/admin");
+?>
\ No newline at end of file diff --git a/views/default/tidypics/stats.php b/views/default/tidypics/stats.php new file mode 100644 index 000000000..8680ab052 --- /dev/null +++ b/views/default/tidypics/stats.php @@ -0,0 +1,3 @@ +<?php
+ echo 'Stats go here';
+?>
\ No newline at end of file |