PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.03.07
E2Pdf – Export Pdf Tool for WordPress v1.03.07
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 / sub-filters.php

sub-filters.php in E2Pdf – Export Pdf Tool for WordPress 1.03.07, at classes/view/blocks/sub-filters.php

18 lines 842 B
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 <ul class="subsubsub">
7 <li class="all">
8 <a <?php if (!$this->get->get('status')) { ?> class="current" <?php } ?> href="<?php echo ($this->helper->get_url(array('page' => 'e2pdf-templates'))); ?>">
9 <?php _e('All', 'e2pdf'); ?> <span class="count">(<?php echo $this->controller->get_templates_list(array(), true); ?>)</span>
10 </a> |
11 </li>
12 <li class="trash">
13 <a <?php if ($this->get->get('status') == 'trash') { ?>class="current"<?php } ?> href="<?php echo ($this->helper->get_url(array('page' => 'e2pdf-templates', 'status' => 'trash'))); ?>">
14 <?php _e('Trash', 'e2pdf'); ?> <span class="count">(<?php echo $this->controller->get_templates_list(array('status' => 'trash'), true); ?>)</span>
15 </a>
16 </li>
17 </ul>
18