PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.32.49
E2Pdf – Export Pdf Tool for WordPress v1.32.49
1.32.49 1.32.48 1.32.43 1.32.40 1.32.34 1.32.32 1.32.31 1.32.26 1.32.22 1.32.23 1.32.18 1.32.17 1.32.15 trunk 1.00.00 1.00.13 1.01.01 1.02.02 1.03.07 1.04.07 1.05.03 1.06.02 1.07.11 1.08.00 1.08.06 All 72 releases
e2pdf / classes / view / blocks / bottom-panel.php

bottom-panel.php in E2Pdf – Export Pdf Tool for WordPress 1.32.49, at classes/view/blocks/bottom-panel.php

41 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('ABSPATH')) {
3 die('Access denied.');
4 }
5 ?>
6 <div id="e2pdf-build-bottom-panel" class="e2pdf-build-bottom-panel">
7 <ul class="e2pdf-panel-options e2pdf-float-left">
8 <li><a class="button e2pdf-delete-all-pages" href="javascript:void(0);"><?php _e('Delete All Pages', 'e2pdf') ?></a></li>
9 </ul>
10 <ul class="e2pdf-panel-options e2pdf-float-right">
11 <li>
12 <label><?php _e('Zoom', 'e2pdf'); ?>:</label>
13 <?php
14 $this->render('field', 'select', array(
15 'field' => array(
16 'id' => 'e2pdf-zoom',
17 ),
18 'value' => '100',
19 'options' => array(
20 '500' => '500%',
21 '450' => '450%',
22 '400' => '400%',
23 '350' => '350%',
24 '300' => '300%',
25 '250' => '250%',
26 '200' => '200%',
27 '175' => '175%',
28 '150' => '150%',
29 '125' => '125%',
30 '100' => '100%',
31 '75' => '75%',
32 '50' => '50%',
33 '25' => '25%',
34 ),
35 ));
36 ?>
37 </li>
38 </ul>
39 <div class="clear"></div>
40 </div>
41