You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.6 KiB

<?php
/**
* @copyright Copyright (c) 2016, Joas Schilling <coding@schilljs.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/** @var $l \OCP\IL10N */
/** @var $_ array */
script('survey_client', 'admin');
style('survey_client', 'admin');
?>
<div id="survey_client" class="section">
<h2><?php p($l->t('Usage survey')); ?></h2>
<p>
<?php p($l->t('You can help improve Nextcloud by sending us some data about your current setup and usage.')); ?>
</p>
<p>
<?php p($l->t('We take your privacy seriously. Sending data is disabled by default, and should you choose to turn it on, it will be anonymized first, and you are given the option of what things to share. Upon receiving a report, the previous one is removed. Upload a clean report to delete all data currently stored on the server')); ?>
</p>
<button><?php p($l->t('Send new report now')); ?></button>
<p>
<input id="survey_client_monthly_report" name="survey_client_monthly_report"
type="checkbox" class="checkbox" value="1" <?php if ($_['is_enabled']): ?> checked="checked"<?php endif; ?> />
<label for="survey_client_monthly_report"><?php p($l->t('Send usage survey monthly')); ?></label>
</p>
<h3><?php p($l->t('Data to send')); ?></h3>
<?php
foreach ($_['categories'] as $category => $data) {
?>
<p>
<input id="survey_client_<?php p($category); ?>" name="survey_client_<?php p($category); ?>"
type="checkbox" class="checkbox survey_client_category" value="1" <?php if ($data['enabled']): ?> checked="checked"<?php endif; ?> />
<label for="survey_client_<?php p($category); ?>"><?php print_unescaped($data['displayName']); ?></label>
</p>
<?php
}
?>
<div id="last_report">
<h3>
<span class="icon icon-triangle-n icon-triangle-s"></span>
<?php p($l->t('Last report sent on: %s', [$_['last_sent']])); ?>
</h3>
<p class="hidden"><textarea title="<?php p($l->t('Last report')); ?>" class="last_report" readonly="readonly"><?php p($_['last_report']);?></textarea></p>
</div>
</div>