aboutsummaryrefslogtreecommitdiff
path: root/mod/logrotate/views/default/plugins/logrotate/settings.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/logrotate/views/default/plugins/logrotate/settings.php')
-rw-r--r--mod/logrotate/views/default/plugins/logrotate/settings.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/mod/logrotate/views/default/plugins/logrotate/settings.php b/mod/logrotate/views/default/plugins/logrotate/settings.php
new file mode 100644
index 000000000..64c7bf743
--- /dev/null
+++ b/mod/logrotate/views/default/plugins/logrotate/settings.php
@@ -0,0 +1,48 @@
+<?php
+/**
+ * Elgg log rotator plugin settings.
+ *
+ * @package ElggLogRotate
+ */
+
+$period = $vars['entity']->period;
+$time = $vars['entity']->time;
+if (!$period) {
+ $period = 'monthly';
+}
+
+if (!$time) {
+ $time = 'monthly';
+}
+?>
+<div>
+ <?php echo elgg_echo('logrotate:period'); ?>
+
+ <?php
+ echo elgg_view('input/dropdown', array(
+ 'name' => 'params[period]',
+ 'options_values' => array(
+ 'weekly' => elgg_echo('logrotate:weekly'),
+ 'monthly' => elgg_echo('logrotate:monthly'),
+ 'yearly' => elgg_echo('logrotate:yearly'),
+ ),
+ 'value' => $period
+ ));
+ ?>
+
+ <?php echo elgg_echo('</div><div>'); ?>
+
+ <?php echo elgg_echo('logrotate:date'); ?>
+
+ <?php
+ echo elgg_view('input/pulldown', array(
+ 'name' => 'params[time]',
+ 'options_values' => array(
+ 'weekly' => elgg_echo('logrotate:week'),
+ 'monthly' => elgg_echo('logrotate:month'),
+ 'yearly' => elgg_echo('logrotate:year'),
+ ),
+ 'value' => $time
+ ));
+ ?>
+</div>