| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/stirizo/wp-content/plugins/widgetkit-for-elementor/admin/includes/ |
Upload File : |
<?php
class WKFE_Dashboard_Overview{
private static $instance;
public static function init(){
if(null === self::$instance){
self::$instance = new self;
}
return self::$instance;
}
public function __construct(){
$this->wkfe_dashboard_overview_content();
}
public function wkfe_dashboard_overview_content(){
?>
<div class="wk-grid wk-child-width-1-3 wk-grid-match" wk-grid>
<div>
<div class="wk-card wk-card-default wk-card-body">
<h3 class="wk-card-title wk-margin-remove-top">Documentation</h3>
<p>It’s highly recommended to check out documentation and FAQ before using this plugin. <a class="wk-alert-primary" target="_blank" href="https://themesgrove.com/support/"><code class="wk-alert-primary">Click Here</code></a> for more details.</p>
</div>
</div>
<div>
<div class="wk-card wk-card-secondary wk-card-body">
<h3 class="wk-card-title wk-margin-remove-top"><?php echo esc_html__( 'Need Any Help?', 'widgetkit-for-elementor');?></h3>
<p>If you need help just shoot us an email <code>help@themesgrove.com</code>.</p>
</div>
</div>
<div>
<div class="wk-card wk-card-default wk-card-body">
<h3 class="wk-card-title wk-margin-remove-top"><?php echo esc_html__( 'Social Community', 'widgetkit-for-elementor');?></h3>
<p>Feel free to join us in our <a target="_blank" href="https://www.facebook.com/groups/widgetkitcommunity/"><code class="wk-alert-primary">Official Facebook Group</code></a> for discussion, support and chill.
</div>
</div>
<div class="wk-width-1-1">
<div class="wk-card wk-card-primary wk-card-body">
<h3 class="wk-card-title wk-margin-remove-top"><?php echo esc_html__( 'Show your Love?', 'widgetkit-for-elementor');?></h3>
<p>We love to have you in Themesgrove family. We are making WidgetKit more awesome everyday. Take your 2 minutes to review the plugin and spread the love to encourage us to keep it going.</p>
<a href="https://wordpress.org/support/plugin/widgetkit-for-elementor/reviews/" target="_blank" class="wk-button wk-button-default"><span class="wk-margin-small-right" wk-icon="icon: heart"></span> Leave a Review</a>
</div>
</div>
</div>
<?php
}
}
?>