PluginProbe
MaxButtons – Create buttons / 6.26
MaxButtons – Create buttons v6.26
6.23 6.24 6.25 6.26 6.26.1 6.27 6.28 6.3 6.4 6.5 6.6 6.7 6.8 6.9 7.0 7.1 7.1.1 7.1.2 7.1.3 7.10 7.11 7.13 7.13.1 7.13.2 7.13.3 All 100 releases
maxbuttons / includes / admin_header.php

admin_header.php in MaxButtons – Create buttons 6.26, at includes/admin_header.php

30 lines 956 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace MaxButtons;
3 defined('ABSPATH') or die('No direct access permitted');
4
5
6 $mainclass = isset($_REQUEST["page"]) ? sanitize_text_field($_REQUEST["page"]) : '';
7 $action = isset($_REQUEST["action"]) ? sanitize_text_field($_REQUEST["action"]) : $action;
8 if ($action !== '')
9 $mainclass .= '-' . $action;
10 ?>
11
12 <div id="maxbuttons" class="<?php echo $mainclass ?>" <?php if ($tabs_active) echo "data-view='tabs'" ?>>
13 <?php do_action("mb-interface-start"); ?>
14 <div class="wrap">
15 <h1 class="title"><span><?php _e("MaxButtons:","maxbuttons"); ?> <?php echo $title ?>
16 <?php if (isset($title_action) && $title_action != "") {
17 echo $title_action; } ?>
18 </span>
19 <div class="logo">
20 <?php do_action("mb-display-logo"); ?>
21 </div>
22
23 </h1>
24 <div class='mb_header_notices'><?php do_action('mb/header/display_notices'); ?></div>
25 <div class="clear"></div>
26 <div class="main">
27 <?php do_action('mb-display-tabs'); ?>
28
29
30