# maxbuttons/6.5/includes/admin_header.php

MaxButtons – Create buttons, version 6.5. 28 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/6.5/code/includes/admin_header.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/6.5/raw/includes/admin_header.php
- Modified: 2016-11-04T10:04:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/maxbuttons/6.5/code/includes/admin_header.php#L10-L20`.

```php
<?php 
defined('ABSPATH') or die('No direct access permitted');
 

$page = isset($_REQUEST["page"]) ? $_REQUEST["page"] : '';
$action = isset($_REQUEST["action"]) ? $_REQUEST["action"] : $action; 
$mainclass = $page . '-' . $action; 
?>

<div id="maxbuttons" class="<?php echo $mainclass ?>" <?php if ($tabs_active) echo "data-view='tabs'" ?>>
	<?php do_action("mb-interface-start");  ?>
	<div class="wrap">
		<h1 class="title"><span><?php _e("MaxButtons:","maxbuttons"); ?> <?php echo $title ?>
		<?php if (isset($title_action) && $title_action != "") {  
			echo $title_action; } ?> 
			</span>
			<div class="logo">
				<?php do_action("mb-display-logo"); ?> 
			</div>
			
		</h1>
		<div class='mb_header_notices'><?php do_action('mb/header/display_notices'); ?></div>		
		<div class="clear"></div>
		<div class="main">
			<?php do_action('mb-display-tabs'); ?>
			
		

```
