| Server IP : 82.64.35.208 / Your IP : 192.168.65.1 Web Server : Apache/2.4.68 (Debian) System : Linux 079bc81edf51 6.12.76-linuxkit #1 SMP Tue Jul 21 14:38:37 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/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() {
if ( Astra_Dynamic_CSS::astra_4_6_0_compatibility() ) {
return;
}
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' );
}
}
}
/**
* Kicking this off by calling 'get_instance()' method
*/
Astra_Gravity_Forms::get_instance();