Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
readiness-check.phtml
Go to the documentation of this file.
1 <?php
6 ?>
7 <div class="nav-bar-outer-actions">
8  <div class="outer-actions-inner-wrap">
9  <div class="btn-wrap btn-wrap-triangle-right btn-wrap-next">
10  <button
11  type="button"
12  class="btn btn-prime"
13  ng-click="nextState()"
14  ng-disabled="needReCheck || checkingInProgress() || hasErrors"
15  >Next</button>
16  </div>
17  <div class="btn-wrap btn-wrap-triangle-left btn-wrap-prev">
18  <button
19  type="button"
20  class="btn"
21  disabled="disabled"
22  >Back</button>
23  </div>
24  <div class="btn-wrap btn-wrap-try-again"
25  ng-show="$state.is('root.readiness-check-' + $state.current.type + '.progress')">
26  <button
27  type="button"
28  class="btn btn-secondary"
29  ng-click="$state.forceReload()"
30  ng-disabled="checkingInProgress()"
31  >Try Again</button>
32  </div>
33  </div>
34 </div>
35 
36 <h2 class="page-sub-title">{{$state.current.header}}</h2>
37 <div ng-show="$state.is('root.readiness-check-' + $state.current.type)"
38  ng-init="actionFrom='<?= $this->actionFrom ?>'" class="accent-box">
39  <p>Let's check your environment for the correct PHP version, PHP extensions, file permissions and compatibility.</p>
40  <button
41  class="btn btn-large btn-prime"
42  ng-click="$state.go('.progress')"
43  type="button"
44  >Start Readiness Check</button>
45 </div>
46 
47 <div ui-view></div>