# maxbuttons/6.23/includes/maxbuttons-no-simplexml.php

MaxButtons – Create buttons, version 6.23. 40 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/6.23/code/includes/maxbuttons-no-simplexml.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/6.23/raw/includes/maxbuttons-no-simplexml.php
- Modified: 2017-09-28T17:08:40+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.23/code/includes/maxbuttons-no-simplexml.php#L10-L20`.

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

global $page_title; 
$page_title = __("Enable SimpleXML", "maxbuttons"); 
$admin = MB()->getClass("admin"); 


$admin->get_header(array("tabs_active" => true, "title" => $page_title, "title_action" => $action)); 

$admin = MB()->getClass('admin'); 
$page_title = __("Packs","maxbuttons-pro"); 
 
$admin->get_header(array("title" => $page_title) );

?>

<div> 

<h4><?php _e('PHP Module SimpleXML not found. This module will not work','maxbuttons') ?></h4>
<p>
	<?php _e('To enable this module please install the SimpleXML PHP module. If you don\'t know how, ask your support from your 
	hosting provider','maxbuttons'); ?>

	<ul>
		<li><a target="_blank" href='http://php.net/manual/en/simplexml.installation.php'><?php _e('SimpleXML installation','maxbuttons');?></a>
		</li>
	</ul> 

</p>

</div>
</div> <!-- main --> 
	<div class="offers ad-wrap">
		<?php do_action("mb-display-ads"); ?> 
	</div>

<?php $admin->get_footer(); ?> 

```
