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
data-option.phtml
Go to the documentation of this file.
1
<?php
6
?>
7
8
<div
class
=
"nav-bar-outer-actions"
>
9
<div
class
=
"outer-actions-inner-wrap"
>
10
<div
class
=
"btn-wrap btn-wrap-triangle-right btn-wrap-next"
>
11
<button
12
type=
"button"
13
class
=
"btn btn-prime"
14
ng-click=
"nextState()"
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
ng-click=
"goToBackup()"
22
>Back</button>
23
</div>
24
</div>
25
</div>
26
27
<h2
class
=
"page-title"
>{{$state.current.header}}</h2>
28
29
<div ng-controller=
"dataOptionController"
>
30
<div
class
=
"message"
ng-hide=
"component.hasUninstall"
>
31
The selected component has no data to
remove
.
32
</div>
33
<div ng-show=
"component.hasUninstall"
>
34
<div
class
=
"form-row"
>
35
What
do
you want to
do
with {{moduleName}}
's data?<br/>
36
</div>
37
<div class="form-row">
38
<input
39
id="keepData"
40
class="form-el-radio"
41
type="radio"
42
ng-model="component.dataOption"
43
value="false"
44
>
45
<label class="form-label" for="keepData">
46
<b>Keep data</b>
47
<br/><br/>
48
Note: You can see the associated data in your database,
49
however your customer will not see this in your online store.
50
</label>
51
52
</div>
53
<div class="form-row">
54
<input
55
id="removeData"
56
class="form-el-radio"
57
type="radio"
58
ng-model="component.dataOption"
59
value="true"
60
>
61
<label class="form-label" for="removeData">
62
<b>Remove data</b>
63
<br/><br/>
64
Did you back up first? Choosing to remove data means the data is unavailable unless you
65
recover it from a backup in the preceding step.
66
</label>
67
</div>
68
</div>
69
</div>