Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/announcementcenter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-12-15 23:48:54 +0300
committerJoas Schilling <coding@schilljs.com>2020-12-15 23:51:10 +0300
commit7bb6cbd307d8e8e02b61c7452f9b62ca14180378 (patch)
tree9b3a1681852951b0ae8a589795a24ef8923bdc76 /templates
parentf7fcb3f057a40ad6a3db19e3a3dae18e908e3e46 (diff)
Bye bye old comments and announcement JS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/part.add.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/templates/part.add.php b/templates/part.add.php
deleted file mode 100644
index 420e667..0000000
--- a/templates/part.add.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-/**
- * @var \OCP\IL10N $l
- * @var array $_
- */
-script('settings', 'settings');
-?>
-<form id="announce" class="section">
- <h2><?php p($l->t('Add announcement')); ?></h2>
-
- <input type="text" name="subject" id="subject" placeholder="<?php p($l->t('Subject…')); ?>" />
- <br />
- <textarea name="message" id="message" placeholder="<?php p($l->t('Your announcement…')); ?>"></textarea>
- <br />
-
- <p>
- <input type="hidden" name="groups" id="groups" placeholder="<?php p($l->t('Groups…')); ?>" style="width: 400px;" />
- <br />
- <em><?php p($l->t('These groups will be able to see the announcement. If no group is selected, all users can see it.')); ?></em>
- <br />
- </p>
-
- <input type="button" id="submit_announcement" class="primary" value="<?php p($l->t('Announce')); ?>" name="submit" />
- <input type="button" id="announcement_options_button" value="<?php p($l->t('Advanced options')); ?>" name="options" />
- <span id="announcement_submit_msg" class="msg"></span>
-
- <div id="announcement_options" class="hidden">
- <p>
- <input id="create_activities" name="create_activities"
- type="checkbox" class="checkbox" value="1"
- <?php if ($_['createActivities']) {
- print_unescaped('checked="checked"');
-} ?> />
- <label for="create_activities"><?php p($l->t('Create activities'));?></label><br/>
- </p>
-
- <p>
- <input id="create_notifications" name="create_notifications"
- type="checkbox" class="checkbox" value="1"
- <?php if ($_['createNotifications']) {
- print_unescaped('checked="checked"');
-} ?> />
- <label for="create_notifications"><?php p($l->t('Create notifications'));?></label><br/>
- </p>
-
- <p>
- <input id="allow_comments" name="allow_comments"
- type="checkbox" class="checkbox" value="1"
- <?php if ($_['allowComments']) {
- print_unescaped('checked="checked"');
-} ?> />
- <label for="allow_comments"><?php p($l->t('Allow comments'));?></label><br/>
- </p>
- </div>
-</form>