| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/u/x/h/uxhactp/www/wp-content/themes/astra/inc/compatibility/ |
Upload File : |
<?php
/**
* Gravity Forms File.
*
* @package Astra
*/
// If plugin - 'Gravity Forms' not exist then return.
if ( ! class_exists( 'GFForms' ) ) {
return;
}
/**
* Astra Gravity Forms
*/
if ( ! class_exists( 'Astra_Gravity_Forms' ) ) :
/**
* Astra Gravity Forms
*
* @since 1.0.0
*/
class Astra_Gravity_Forms {
/**
* Member Variable
*
* @var object instance
*/
private static $instance;
/**
* Initiator
*/
public static function get_instance() {
if ( ! isset( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Constructor
*/
public function __construct() {
add_action( 'gform_enqueue_scripts', array( $this, 'add_styles' ) );
}
/**
* Add assets in theme
*
* @since 1.0.0
*/
public function add_styles() {
$file_prefix = '.min';
$dir_name = 'minified';
if ( is_rtl() ) {
$file_prefix .= '-rtl';
}
$css_file = ASTRA_THEME_URI . 'assets/css/' . $dir_name . '/compatibility/gravity-forms' . $file_prefix . '.css';
wp_enqueue_style( 'astra-gravity-forms', $css_file, array(), ASTRA_THEME_VERSION, 'all' );
}
}
endif;
/**
* Kicking this off by calling 'get_instance()' method
*/
Astra_Gravity_Forms::get_instance();