Merge pull request #16695 from mattwire/pcpshortcodes
[civicrm-core.git] / setup / res / finished.Drupal.php
1 <?php \Civi\Setup::assertRunning(); ?>
2 <?php
3 throw new \Exception("A draft copy of this file is available but has not been tested. Please edit " . __FILE__);
4
5 $drupalPermissionsURL = url('admin/people/permissions');
6 $drupalURL = url('civicrm/admin/configtask', array(
7 'query' => array(
8 'reset' => 1,
9 ),
10 ));
11 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
12 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
13 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
14 <head>
15 <title><?php echo ts('CiviCRM Installed'); ?></title>
16 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
17 <link rel="stylesheet" type="text/css" href="template.css"/>
18 </head>
19 <body>
20 <div style="padding: 1em;">
21 <h1><?php echo ts('CiviCRM Installed'); ?></h1>
22 <p class="good"><?php echo ts('CiviCRM has been successfully installed'); ?></p>
23 <ul>
24 <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(
25 1 => "target='_blank' href='{$drupalPermissionsURL}'",
26 2 => "target='_blank' href='http://wiki.civicrm.org/confluence/display/CRMDOC/Default+Permissions+and+Roles'",
27 )); ?></li>
28 <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>
29 <?php include 'finished.Common.php'; ?>
30 </ul>
31 </div>
32 </body>
33 </html>