Merge pull request #16615 from MegaphoneJon/selfsfc-refactor
[civicrm-core.git] / setup / plugins / blocks / opt-in.tpl.php
1 <?php if (!defined('CIVI_SETUP')): exit("Installation plugins must only be loaded by the installer.\n");
2 endif; ?>
3 <h2 id="settings"><?php echo ts('Opt-in'); ?></h2>
4
5 <p>
6 <?php echo ts('CiviCRM is provided for free -- built with donations and volunteerism. We don\'t have the marketing or data-analytics prowess of a large corporation, so we rely on users to keep us informed -- and to spread the word.'); ?>
7 <?php echo ts('Of course, not everyone can help in these ways. But if you can, opt-in to help enrich the product and community.'); ?>
8 </p>
9
10 <div>
11 <input class="optin-cb sr-only" style="display: none;" type="checkbox" name="civisetup[opt-in][versionCheck]" id="civisetup[opt-in][versionCheck]" value="1" <?php echo $model->extras['opt-in']['versionCheck'] ? 'checked' : ''; ?>>
12 <label class="optin-box" for="civisetup[opt-in][versionCheck]">
13 <span class="optin-label"><?php echo ts('Version pingback'); ?></span>
14 <span class="optin-desc"><?php echo ts('Check for CiviCRM version updates. Report anonymous usage statistics.'); ?></span>
15 </label>
16
17 <input class="optin-cb sr-only" style="display: none;" type="checkbox" name="civisetup[opt-in][empoweredBy]" id="civisetup[opt-in][empoweredBy]" value="1" <?php echo $model->extras['opt-in']['empoweredBy'] ? 'checked' : ''; ?>>
18 <label class="optin-box" for="civisetup[opt-in][empoweredBy]">
19 <span class="optin-label"><?php echo ts('Empowered by CiviCRM'); ?></span>
20 <span class="optin-desc"><?php echo ts('Display "Empowered by CiviCRM" in the footer of public forms.'); ?></span>
21 </label>
22 </div>