Merge pull request #24187 from colemanw/removeCiviAuction
[civicrm-core.git] / setup / res / finished.Drupal.php
1 <?php \Civi\Setup::assertRunning(); ?>
2 <?php
3 $drupalPermissionsURL = url('admin/people/permissions');
4 $drupalURL = url('civicrm/admin/configtask', array(
5 'query' => array(
6 'reset' => 1,
7 ),
8 ));
9 ?>
10 <div style="padding: 1em;">
11 <h1><?php echo ts('CiviCRM Installed'); ?></h1>
12 <p class="good"><?php echo ts('CiviCRM has been successfully installed'); ?></p>
13 <ul>
14 <li><?php echo ts("Drupal 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(
15 1 => "target='_blank' href='{$drupalPermissionsURL}'",
16 2 => "target='_blank' href='http://wiki.civicrm.org/confluence/display/CRMDOC/Default+Permissions+and+Roles'",
17 )); ?></li>
18 <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='$drupalURL'")); ?></li>
19 <?php include 'finished.Common.php'; ?>
20 </ul>
21 </div>