| 1 |
<?php |
| 2 |
namespace MBSocial; |
| 3 |
defined('ABSPATH') or die('No direct access permitted'); |
| 4 |
|
| 5 |
use MaxButtons\maxButton as maxButton; |
| 6 |
$button = MB()->getClass('button'); // this loads the maxblocks template files |
| 7 |
|
| 8 |
|
| 9 |
$title = (Install::isPro()) ? __('Wordpress Share Buttons PRO', 'mbsocial') : __('WordPress Share Buttons','mbsocial'); |
| 10 |
$header = array( |
| 11 |
'title' => $title, |
| 12 |
"tabs_active" => true, |
| 13 |
); |
| 14 |
|
| 15 |
$mainclass = 'maxbuttons-social-editor'; |
| 16 |
$admin = mbSocial()->admin(); |
| 17 |
$admin->header($header); |
| 18 |
|
| 19 |
?> |
| 20 |
|
| 21 |
<div class='mb_tab network_tab'> |
| 22 |
<div class="title"> |
| 23 |
<span class="dashicons dashicons-list-view"></span> |
| 24 |
<span class='title'><?php _e('Network editor', 'mbsocial') ?></span> |
| 25 |
</div> |
| 26 |
<div class="option-container"> |
| 27 |
<div class="title"><?php _e('Network editor','mbsocial'); ?></div> |
| 28 |
<div class="inside"> |
| 29 |
<?php include_once('page_networks.php'); ?> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
</div> <!-- mb_tab --> |
| 33 |
|