Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
setup
view
magento
setup
install.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
8
9
?>
10
<div
class
=
"nav-bar-outer-actions"
>
11
<div
class
=
"outer-actions-inner-wrap"
>
12
<div
class
=
"btn-wrap btn-wrap-triangle-right btn-wrap-next"
>
13
<button
14
type=
"button"
15
class
=
"btn btn-prime"
16
disabled
17
>Next</button>
18
</div>
19
<div
class
=
"btn-wrap btn-wrap-triangle-left btn-wrap-prev"
>
20
<button
21
type=
"button"
22
class
=
"btn"
23
ng-disabled=
"isDisabled"
24
ng-click=
"previousState()"
25
>Back</button>
26
</div>
27
<div
class
=
"btn-wrap btn-wrap-try-again"
ng-show=
"isStarted"
>
28
<button
29
type=
"button"
30
class
=
"btn btn-secondary"
31
ng-disabled=
"isDisabled"
32
ng-click=
"start()"
33
>Try Again</button>
34
</div>
35
</div>
36
</div>
37
38
<h2
class
=
"page-sub-title"
>{{$state.current.header}}</h2>
39
40
<div ng-show=
"!isStarted"
class
=
"accent-box"
>
41
<p>You
're ready!</p>
42
<button ng-click="start()" class="btn btn-large btn-prime">Install Now</button>
43
</div>
44
45
<div ng-show="isStarted" class="content-install">
46
<p class="text-right">Installing... {{progressText}}</p>
47
<div class="progress">
48
<div
49
class="progress-bar"
50
role="progressbar"
51
aria-valuenow="{{progress}}"
52
aria-valuemin="0"
53
aria-valuemax="100"
54
ng-style="barStyle(progress)"
55
>
56
</div>
57
</div>
58
<div ng-show="isFailed" class="message message-error">
59
<span class="message-text">
60
<strong>Installation is incomplete.</strong>
61
<br>
62
Check the console log for errors before trying again.
63
</span>
64
</div>
65
<button
66
type="button"
67
class="btn btn-expand"
68
ng-click="toggleConsole()"
69
ng-class="{'
expanded
': isConsole}"
70
>
71
Console Log
72
</button>
73
<div ng-show="isConsole" id="console">
74
<div class="console" ng-bind-html="log"></div>
75
</div>
76
</div>
77
78
<div class="install-database-clean" ng-show="isShowCleanUpBox">
79
<p>To install sample data you should clean up you database</p>
80
<button
81
type="button"
82
class="btn btn-secondary"
83
ng-disabled="isDisabled"
84
ng-click="startCleanup(true)">
85
Clean up automatically
86
</button>
87
<button
88
type="button"
89
class="btn btn-secondary"
90
ng-disabled="isDisabled"
91
ng-click="startCleanup(false)">
92
Proceed without clean up
93
</button>
94
<button
95
type="button"
96
class="btn"
97
ng-disabled="isDisabled"
98
ng-click="hideCleanUpBox()">
99
Cancel
100
</button>
101
</div>