-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathHtmlCollapsibleAttributeUnitTest.2.inc
More file actions
35 lines (34 loc) · 1.1 KB
/
HtmlCollapsibleAttributeUnitTest.2.inc
File metadata and controls
35 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
?>
<html>
<head>
<base/>
<link/>
</head>
<body>
<div class="action-dropdown">
<button type="button" class="action-toggle" data-mage-init='{"dropdown":{}}' data-toggle="dropdown">
<span>Test</span>
</button>
</div>
<div class="fieldset-wrapper-title">
<strong class="admin__collapsible-title" data-toggle="collapse" data-bind="attr:{'data-target': '#'+id}">
<span data-bind="text: title"></span>
</strong>
</div>
<div class="admin__collapsible-title"
data-toggle="collapse"
data-target="#id-content">
<span>Test</span>
</div>
<strong <?= /* @noEscape */ $isCollapsable ?
'class="admin__collapsible-title" data-toggle="collapse" data-target="#' . $id . '-content"' :
'class="title"'; ?>>
<span><?= $block->escapeHtml($element->getLegend()) ?></span>
</strong>
</body>
</html>