Merge pull request #17396 from seamuslee001/use_util_mail_events
[civicrm-core.git] / setup / res / installer.tpl.php
1 <?php \Civi\Setup::assertRunning(); ?>
2 <?php
3 $mainClasses = array(
4 'civicrm-setup-body',
5 count($reqs->getErrors()) ? 'has-errors' : '',
6 count($reqs->getWarnings()) ? 'has-warnings' : '',
7 (count($reqs->getErrors()) + count($reqs->getWarnings()) > 0) ? 'has-problems' : '',
8 (count($reqs->getErrors()) + count($reqs->getWarnings()) === 0) ? 'has-no-problems' : '',
9 );
10 ?>
11
12 <div class="<?php echo implode(' ', $mainClasses); ?>">
13 <div id="All">
14
15 <form name="civicrm_form" method="post" action="<?php echo str_replace('%7E', '~', $_SERVER['REQUEST_URI']); ?>">
16
17 <?php echo $ctrl->renderBlocks($_tpl_params); ?>
18
19 </form>
20 </div>
21 </div>