Merge pull request #19104 from MegaphoneJon/export-fix
[civicrm-core.git] / setup / res / finished.Backdrop.php
1 <?php \Civi\Setup::assertRunning(); ?>
2 <?php
3 $backdropPermissionsURL = url('admin/config/people/permissions');
4 $backdropURL = url('civicrm/admin/configtask', [
5 'query' => ['reset' => 1],
6 ]);
7 ?>
8 <div style="padding: 1em;">
9 <h1><?php echo ts('CiviCRM Installed'); ?></h1>
10 <p class="good"><?php echo ts('CiviCRM has been successfully installed'); ?></p>
11 <ul>
12 <li><?php echo ts("Backdrop user permissions have been automatically set - giving anonymous and authenticated users access to public CiviCRM forms and features. We recommend that you <a %1>review these permissions</a> to ensure that they are appropriate for your requirements (<a %2>learn more...</a>)", array(
13 1 => "target='_blank' href='{$backdropPermissionsURL}'",
14 2 => "target='_blank' href='http://wiki.civicrm.org/confluence/display/CRMDOC/Default+Permissions+and+Roles'",
15 )); ?></li>
16 <li><?php echo ts("Use the <a %1>Configuration Checklist</a> to review and configure settings for your new site", array(1 => "target='_blank' href='$backdropURL'")); ?></li>
17 <?php include 'finished.Common.php'; ?>
18 </ul>
19 </div>