Translated using Weblate (Bengali)
[phpmyadmin.git] / templates / div_for_slider_effect.phtml
bloba806aac0740983f3d12e1f5b8d8060543806d7b1
1 <?php if($InitialSlidersState == 'disabled'): ?>
2     <div <?= $id? "id=\"$id\"": '' ?>>
3 <?php else: ?>
4     <?php /**
5         * Bad hack on the next line. document.write() conflicts with jQuery,
6         * hence, opening the <div> with PHP itself instead of JavaScript.
7         *
8         * @todo find a better solution that uses $.append(), the recommended
9         * method maybe by using an additional param, the id of the div to
10         * append to
11         */ ?>
12     <div <?= $id? "id=\"$id\"": '' ?>
13         <?= ($InitialSlidersState == 'closed')? ' style="display: none; overflow:auto;"':'' ?> class="pma_auto_slider"
14         <?= $message? 'title="'. htmlspecialchars($message) . '"': ""?> >
15 <?php endif; ?>