*(……&*6干sfa绅士的风度sfsdfd不打发打发死啊好办法
<?php
namespace DethemeKitAddons\Admin\Includes;
use DethemeKitAddons\Helper_Functions;
if ( ! defined( 'ABSPATH' ) ) exit;
class Plugin_Info {
public function create_about_menu() {
if ( ! Helper_Functions::is_hide_about() ) {
add_submenu_page(
'dethemekit-addons',
'',
__('About','dethemekit-for-elementor'),
'manage_options',
'dethemekit-addons-about',
[ $this, 'pa_about_page' ]
);
}
}
public function pa_about_page() {
$theme_name = Helper_Functions::get_installed_theme();
$url = sprintf('https://dethemekitaddons.com/pro/?utm_source=about-page&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=%s', $theme_name );
$support_url = sprintf('https://dethemekitaddons.com/support/?utm_source=about-page&utm_medium=wp-dash&utm_campaign=get-support&utm_term=%s', $theme_name );
?>
<div class="wrap">
<div class="response-wrap"></div>
<div class="pa-header-wrapper">
<div class="pa-title-left">
<h1 class="pa-title-main"><?php echo Helper_Functions::name(); ?></h1>
<h3 class="pa-title-sub"><?php echo sprintf(
/* translators: 1: plugin name, 2: author. */
esc_html__('Thank you for using %1$s. This plugin has been developed by %2$s and we hope you enjoy using it.','dethemekit-for-elementor'), Helper_Functions::name(),Helper_Functions::author()); ?></h3>
</div>
<?php if( ! Helper_Functions::is_hide_logo() ) : ?>
<div class="pa-title-right">
<img class="pa-logo" src="<?php echo DETHEMEKIT_ADDONS_URL . 'admin/images/dethemekit-addons-logo.png';?>">
</div>
<?php endif; ?>
</div>
<div class="pa-settings-tabs">
<div id="pa-about" class="pa-settings-tab">
<div class="pa-row">
<div class="pa-col-half">
<div class="pa-about-panel">
<div class="pa-icon-container">
<i class="dashicons dashicons-info abt-icon-style"></i>
</div>
<div class="pa-text-container">
<h4><?php echo __('What is DethemeKit Addons?', 'dethemekit-for-elementor'); ?></h4>
<p><?php echo __('DethemeKit Addons for Elementor extends Elementor Page Builder capabilities with many fully customizable widgets and addons that help you to build impressive websites with no coding required.', 'dethemekit-for-elementor'); ?></p>
<?php if( ! defined('DETHEMEKIT_PRO_ADDONS_VERSION') ) : ?>
<p><?php echo __('Get more widgets and addons with ', 'dethemekit-for-elementor'); ?><strong><?php echo __('DethemeKit Addons Pro', 'dethemekit-for-elementor'); ?></strong> <a href="<?php echo esc_url( $url ); ?>" target="_blank" ><?php echo __('Click Here', 'dethemekit-for-elementor'); ?></a><?php echo __(' to know more.', 'dethemekit-for-elementor'); ?></p>
<?php endif; ?>
</div>
</div>
</div>
<div class="pa-col-half">
<div class="pa-about-panel">
<div class="pa-icon-container">
<i class="dashicons dashicons-universal-access-alt abt-icon-style"></i>
</div>
<div class="pa-text-container">
<h4><?php echo __('Docs and Support', 'dethemekit-for-elementor'); ?></h4>
<p><?php echo __('It’s highly recommended to check out documentation and FAQ before using this plugin. ', 'dethemekit-for-elementor'); ?><a target="_blank" href="<?php echo esc_url( $support_url ); ?>"><?php echo __('Click Here', 'dethemekit-for-elementor'); ?></a><?php echo __(' for more details. You can also join our ', 'dethemekit-for-elementor'); ?><a href="https://www.facebook.com/groups/DethemeKitAddons" target="_blank"><?php echo __('Facebook Group', 'dethemekit-for-elementor'); ?></a><?php echo __(' and Our ', 'dethemekit-for-elementor'); ?><a href="https://my.leap13.com/forums/" target="_blank"><?php echo __('Community Forums', 'dethemekit-for-elementor'); ?></a></p>
</div>
</div>
</div>
</div>
<?php if( ! Helper_Functions::is_hide_rate() ) : ?>
<div>
<p><?php echo __('Did you like DethemeKit Addons for Elementor Plugin? Please ', 'dethemekit-for-elementor'); ?><a href="https://wordpress.org/support/plugin/dethemekit-addons-for-elementor/reviews/#new-post" target="_blank"><?php echo __('Click Here to Rate it ★★★★★', 'dethemekit-for-elementor'); ?></a></p>
</div>
<?php endif; ?>
</div>
</div>
</div>
<?php }
public function __construct() {
add_action( 'admin_menu', array ($this,'create_about_menu' ), 100 );
}
}