forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoggle_button.phtml
More file actions
26 lines (26 loc) · 1.28 KB
/
toggle_button.phtml
File metadata and controls
26 lines (26 loc) · 1.28 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
<!-- TOGGLE START -->
<div class='wrapper toggleAjax hide'>
<div class='toggleButton'>
<div title=" <?= __('Click to toggle') ?>" class='container <?=$state?>'>
<img src="<?= htmlspecialchars($pmaThemeImage) ?>toggle-<?= htmlspecialchars($text_dir) ?>.png" alt='' />
<table class='nospacing nopadding'>
<tbody>
<tr>
<td class='toggleOn'>
<span class='hide'><?= $link_on ?></span>
<div><?= $toggleOn ?></div>
</td>
<td><div> </div></td>
<td class='toggleOff'>
<span class='hide'><?= $link_off ?></span>
<div><?= $toggleOff ?></div>
</td>
</tr>
</tbody>
</table>
<span class='hide callback'><?= htmlspecialchars($callback) ?></span>
<span class='hide text_direction'><?= $text_dir ?></span>
</div>
</div>
</div>
<!-- TOGGLE END -->