| 1 |
<?php |
| 2 |
namespace MaxButtons; |
| 3 |
|
| 4 |
$action = 'install-plugin'; |
| 5 |
$slug = 'share-button'; |
| 6 |
$url = wp_nonce_url( |
| 7 |
add_query_arg( |
| 8 |
array( |
| 9 |
'action' => $action, |
| 10 |
'plugin' => $slug |
| 11 |
), |
| 12 |
admin_url( 'update.php' ) |
| 13 |
), |
| 14 |
$action.'_'.$slug |
| 15 |
); |
| 16 |
|
| 17 |
$page_title = __('WordPress Share Buttons', 'maxbuttons'); |
| 18 |
|
| 19 |
$admin = MB()->getClass('admin'); |
| 20 |
$admin->get_header(array("tabs_active" => true, "title" => $page_title, 'action' => 'gosocial')); |
| 21 |
|
| 22 |
$img_url = MB()->get_plugin_url() . "images/gosocial"; |
| 23 |
?> |
| 24 |
|
| 25 |
|
| 26 |
<div class='social-share-move'> |
| 27 |
<div class='container'> |
| 28 |
<div class='topbox'> |
| 29 |
|
| 30 |
<img src="<?php echo $img_url ?>/icon-128x128.png" class='icon-left'/> |
| 31 |
<h1><?php _e('MaxButtons Share Buttons', 'maxbuttons'); ?></h1> |
| 32 |
|
| 33 |
<p><?php _e('We created a brand new plugin to make your Social Share experiences better.','maxbuttons'); ?></p> |
| 34 |
</div> |
| 35 |
|
| 36 |
<div class='imagebox'> |
| 37 |
<img src="<?php echo $img_url ?>/screen-presets.png" alt='Presets example' /> |
| 38 |
</div> |
| 39 |
|
| 40 |
<div class='featurebox'> |
| 41 |
<div class='block'> |
| 42 |
<h3><?php _e('Features','maxbuttons'); ?></h3> |
| 43 |
<ul class='fa-ul'> |
| 44 |
<li><span class="fa-li"><i class="fas fa-check"></i></span><?php _e('Presets to get going quickly','maxbuttons'); ?></li> |
| 45 |
<li><span class="fa-li"><i class="fas fa-check"></i></span><?php _e('Many networks: Facebook, |
| 46 |
Twitter, |
| 47 |
Instagram, |
| 48 |
Pinterest, |
| 49 |
Linkedin, |
| 50 |
Google+, |
| 51 |
YouTube, |
| 52 |
Pinterest, |
| 53 |
VKontakte, |
| 54 |
StumbleUpon, |
| 55 |
Reddit, |
| 56 |
Whatsapp, |
| 57 |
Buffer','maxbuttons'); ?> |
| 58 |
</li> |
| 59 |
<li><span class="fa-li"><i class="fas fa-check"></i></span><?php _e('Customizable layout','maxbuttons'); ?></li> |
| 60 |
</ul> |
| 61 |
</div> |
| 62 |
<div class='block'> |
| 63 |
<h3><?php _e('Only with MaxButton PRO:','maxbuttons'); ?></h3> |
| 64 |
|
| 65 |
<ul class='fa-ul'> |
| 66 |
<li><span class="fa-li"><i class="fas fa-check"></i></span><?php _e('Customize Twitter hashtag per post for maximum SEO value','maxbuttons'); ?> </li> |
| 67 |
<li><span class="fa-li"><i class="fas fa-check"></i></span><?php _e('More options for customization','maxbuttons'); ?></li> |
| 68 |
<li><span class="fa-li"><i class="fas fa-check"></i></span><?php _e('Add custom buttons via MaxButtons','maxbuttons'); ?> </li> |
| 69 |
</ul> |
| 70 |
</div> <!-- block --> |
| 71 |
|
| 72 |
</div> |
| 73 |
<div class='linkbox'> |
| 74 |
<p><a href='<?php echo $url ?>' class='button-primary install-now large '><?php _e('Install for Free!','maxbuttons') ?></a></p> |
| 75 |
<p><a href='https://wordpress.org/plugins/share-button/' target='_blank'><?php _e('Check plugin on WordPress site','maxbuttons'); ?></a></p> |
| 76 |
</div> |
| 77 |
</div> <!-- inside --> |
| 78 |
</div> |
| 79 |
|
| 80 |
|
| 81 |
</div> <!-- main --> |
| 82 |
|
| 83 |
<div class="ad-wrap"> |
| 84 |
<?php do_action("mb-display-ads"); ?> |
| 85 |
</div> |
| 86 |
|
| 87 |
<?php |
| 88 |
$admin->get_footer(); |
| 89 |
|