whoami7 - Manager
:
/
home
/
analuakl
/
bents.in
/
wp-content
/
plugins
/
insight-core
/
includes
/
dashboard
/
Upload File:
files >> /home/analuakl/bents.in/wp-content/plugins/insight-core/includes/dashboard/dashboard.php
<?php if ( ! class_exists( 'InsightCore_Dashboard' ) ) { class InsightCore_Dashboard { function __construct() { add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) ); add_action( 'wp_dashboard_setup', array( $this, 'add_dashboard_widget' ) ); } function add_dashboard_widget() { wp_add_dashboard_widget( 'insight_core_featured_themes', 'Featured Themes by ThemeMove', array( &$this, 'featured_themes_content', ) ); } function admin_enqueue_scripts( $hook ) { // Don't load scripts when not Dashboard Home. if ( $hook !== 'index.php' ) { return; } wp_enqueue_style( 'slick', INSIGHT_CORE_PATH . 'includes/dashboard/slick/slick.css' ); wp_enqueue_script( 'slick', INSIGHT_CORE_PATH . 'includes/dashboard/slick/slick.min.js', array( 'jquery' ), null, true ); wp_enqueue_style( 'insight-core-dashboard', INSIGHT_CORE_PATH . 'includes/dashboard/style.css' ); wp_enqueue_script( 'insight-core-dashboard', INSIGHT_CORE_PATH . 'includes/dashboard/script.js', array( 'jquery' ), null, true ); } function featured_themes_content() { if ( false === ( $themes = get_transient( 'insight_core_featured_themes' ) ) ) { $request = wp_remote_get( 'https://api.insightstud.io/dashboard/themes.json', array( 'timeout' => 120 ) ); if ( ! is_wp_error( $request ) ) { $themes = json_decode( wp_remote_retrieve_body( $request ) ); set_transient( 'insight_core_featured_themes', $themes, 24 * HOUR_IN_SECONDS ); } } if ( is_object( $themes ) ) { foreach ( $themes as $theme ) { echo '<div class="item"><a href="' . esc_url( $theme->url ) . '/" target="_blank" title="' . esc_attr( $theme->name ) . '"><img src="' . esc_url( $theme->img ) . '"/><span class="info"><span class="name">' . esc_html( $theme->name ) . '</span></span></a></div>'; } } } } new InsightCore_Dashboard(); }
Copyright ©2021 || Defacer Indonesia