PluginProbe
MaxButtons – Create buttons / 6.7
MaxButtons – Create buttons v6.7
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.7, at includes/admin_header.php

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