76 lines
5.3 KiB
PHP
76 lines
5.3 KiB
PHP
<?php
|
|
// Exit if accessed directly
|
|
if( !defined( 'ABSPATH' ) ) exit;
|
|
if( !current_user_can('administrator') ) exit;
|
|
|
|
WPF()->notice->refreshAddonPage(); WPF()->notice->dismissAddonNoteOnPage();
|
|
|
|
?>
|
|
|
|
<div id="wpf-admin-wrap" class="wrap wpforo-addons">
|
|
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
|
<img src="<?php echo WPFORO_URL . '/wpf-assets/images/' ?>/wpforo-40.png" style="border:2px solid #fff;">
|
|
</div>
|
|
<h1 style="padding-bottom:20px; padding-top:15px;"><?php _e('wpForo Addons', 'wpforo'); ?></h1>
|
|
<br style="clear:both">
|
|
<table class="widefat" width="100%" cellspacing="1" border="0">
|
|
<tbody><tr>
|
|
<td style="padding:10px 10px 0px 10px;" valign="top">
|
|
<table width="100%" cellspacing="1" border="0">
|
|
<thead>
|
|
<tr>
|
|
<th style="font-size:16px; padding-bottom:15px;"><strong><?php _e('wpForo Addons', 'wpforo'); ?></strong></th>
|
|
<th style="font-size:16px; padding-bottom:15px; width:205px; text-align:center; border-bottom:1px solid #008EC2;"><a href="http://gvectors.com/forum/" style="color:#008EC2; overflow:hidden; outline:none;" target="_blank">Addons Support Forum</a></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody><tr valign="top">
|
|
<td colspan="2" style="background:#FFF; text-align:left; font-size:13px;">
|
|
<?php _e('All wpForo addons are being developed by wpForo developers at gVectors Team. Addon prices also include a small donation to the hard work wpForo developers do for free. When you buy an addon, you also donate the free wpForo development and support. Addons are the only incoming source for wpForo developers. wpForo is a premium forum plugin which will always be available for free. There will never be paid and pro versions of this forum board. We have another dozens of awesome features in our to-do list which will also be added for free in future releases. So the free wpForo development always stays on the first priority and wpForo is being extended with new free functions and features even faster than before.', 'wpforo'); ?>
|
|
<br>
|
|
<p style="font-size:10px; color:#B1B1B1; font-style:italic; text-align:right; line-height:12px; padding-top:6px; margin:0px;">
|
|
<?php _e('Thank you!<br> Sincerely yours,<br> gVectors Team', 'wpforo'); ?> </p>
|
|
</td>
|
|
</tr>
|
|
</tbody></table>
|
|
</td>
|
|
</tr>
|
|
</tbody></table>
|
|
<br style="clear:both">
|
|
<div class="wpforo-addons-wrapper">
|
|
<?php
|
|
foreach (WPF()->addons as $key => $addon) {
|
|
$installed = (class_exists($addon['class'])) ? true : false;
|
|
?>
|
|
<div class="wpforo-addon-block">
|
|
<div id="wpforo-addon-<?php echo $key ?>" class="addon-thumb" style="background:url(<?php echo ($installed) ? str_replace('.png', '-off.png', $addon['thumb']) : $addon['thumb']; ?>) top center no-repeat;">
|
|
|
|
</div>
|
|
<div class="contenthover">
|
|
<div class="addon-isactive">
|
|
<?php if ($installed) { ?>
|
|
<div class="note-installed"><?php _e('Installed', 'default'); ?></div>
|
|
<?php } else { ?>
|
|
<h3 style="font-weight:normal; font-size:22px; line-height: 25px; margin-bottom:2px; text-shadow: 0 0 2px #999;"><?php echo $addon['title'] ?></h3>
|
|
<ul>
|
|
<li style="line-height:16px;"><?php _e('Version', 'default'); ?>: <?php echo $addon['version']; ?></li>
|
|
<li style="line-height:16px;">wpForo: <?php _e('at least', 'default'); ?> <?php echo $addon['requires']; ?></li>
|
|
</ul>
|
|
<a class="button button-primary addon-button" href="<?php echo $addon['url']; ?>" target="_blank" style="font-size:14px;"><?php echo __('Details | Buy', 'wpforo'); ?></a>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
<div style="clear:both"></div>
|
|
<div class="addon-info" style="<?php if ($installed) echo 'background-color:#bbbbbb'; ?>">
|
|
<a href="<?php echo $addon['url']; ?>" target="_blank" title="<?php _e('More information about', 'default'); ?> <?php echo $addon['title'] ?> add-on »">
|
|
<p class="addon-title"><?php echo $addon['title']; ?></p>
|
|
</a>
|
|
<div class="addon-desc"><?php echo $addon['desc']; ?></div>
|
|
</div>
|
|
</div>
|
|
<script language="javascript">jQuery(document).ready(function ($) { $('#wpforo-addon-<?php echo $key ?>').contenthover({ overlay_width:290, overlay_height:<?php echo ($installed) ? '100' : '180'; ?>, effect:'slide', slide_direction:'right', overlay_x_position:'right', overlay_y_position:'center', overlay_background:'#e5e5e5', overlay_opacity:0.9}); });</script>
|
|
<?php } ?>
|
|
</div>
|
|
<div style="clear:both;"></div>
|
|
<h3> </h3>
|
|
<hr />
|
|
</div>
|