| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/jetcounter/wp-content/plugins/wpgetapi/includes/ |
Upload File : |
<?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* The main class
*
* @since 1.4.4
*/
class WpGetApi_Api_Enqueues {
/**
* Main constructor
*
* @since 1.4.4
*
*/
public function __construct() {
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts_styles' ) );
}
/**
* Enqueue scripts and styles.
*/
public function admin_scripts_styles( $hook_suffix ) {
$v = WPGETAPIVERSION;
//$v = time();
if( isset( $hook_suffix ) && strpos( $hook_suffix, 'wpgetapi_' ) !== false ) {
wp_enqueue_script( 'wpgetapi-script', WPGETAPIURL .'assets/js/wpgetapi-admin.js', array( 'jquery' ), $v );
wp_enqueue_script( 'jquery-ui-tooltip', '', array( 'jquery-ui-core', 'wpgetapi-script' ) );
}
wp_enqueue_style( 'wpgetapi-style', WPGETAPIURL .'assets/css/wpgetapi-admin.css', false, $v );
}
}
return new WpGetApi_Api_Enqueues();