# share-button/1.9/admin/page_settings.php

Social Share Buttons, version 1.9. 33 lines.

- Page: https://pluginprobe.com/plugins/share-button/1.9/code/admin/page_settings.php
- Raw: https://pluginprobe.com/plugins/share-button/1.9/raw/admin/page_settings.php
- Modified: 2018-04-19T12:12:58+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/share-button/1.9/code/admin/page_settings.php#L10-L20`.

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

use MaxButtons\maxButton as maxButton;
$button = MB()->getClass('button'); // this loads the maxblocks template files


$title = (Install::isPro()) ? __('Wordpress Share Buttons PRO', 'mbsocial') : __('WordPress Share Buttons','mbsocial');
$header = array(
		'title' => $title,
    "tabs_active" => true,
);

$mainclass = 'maxbuttons-social-editor';
$admin = mbSocial()->admin();
$admin->header($header);

?>

  <div class='mb_tab network_tab'>
    <div class="title">
      <span class="dashicons dashicons-list-view"></span>
      <span class='title'><?php _e('Network editor', 'mbsocial') ?></span>
    </div>
    <div class="option-container">
        <div class="title"><?php _e('Network editor','mbsocial'); ?></div>
        <div class="inside">
              <?php include_once('page_networks.php'); ?>
        </div>
    </div>
  </div> <!-- mb_tab -->

```
