Server IP : 172.67.216.182 / Your IP : 162.158.189.149 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/audiomatrix.in/wp-content/plugins/astra-widgets/ |
Upload File : |
<?php /** * Plugin Name: Astra Widgets * Plugin URI: https://wpastra.com/ * Description: The Fastest Way to Add More Widgets into Your WordPress Website. * Version: 1.2.12 * Author: Brainstorm Force * Author URI: https://www.brainstormforce.com * Text Domain: astra-widgets * * @package Astra Widgets */ /** * Exit if accessed directly. */ if ( ! defined( 'ABSPATH' ) ) { exit(); } /** * Set constants. */ define( 'ASTRA_WIDGETS_FILE', __FILE__ ); define( 'ASTRA_WIDGETS_BASE', plugin_basename( ASTRA_WIDGETS_FILE ) ); define( 'ASTRA_WIDGETS_DIR', plugin_dir_path( ASTRA_WIDGETS_FILE ) ); define( 'ASTRA_WIDGETS_URI', plugins_url( '/', ASTRA_WIDGETS_FILE ) ); define( 'ASTRA_WIDGETS_VER', '1.2.12' ); define( 'ASTRA_WIDGETS_TEMPLATE_DEBUG_MODE', false ); require_once ASTRA_WIDGETS_DIR . 'classes/class-astra-widgets.php'; if ( is_admin() ) { /** * Admin Notice Library Settings */ require_once ASTRA_WIDGETS_DIR . 'lib/astra-notices/class-astra-notices.php'; } // BSF Analytics library. if ( ! class_exists( 'BSF_Analytics_Loader' ) ) { require_once ASTRA_WIDGETS_DIR . 'admin/bsf-analytics/class-bsf-analytics-loader.php'; } $bsf_analytics = BSF_Analytics_Loader::get_instance(); $bsf_analytics->set_entity( array( 'bsf' => array( 'product_name' => 'Astra Widgets', 'path' => ASTRA_WIDGETS_DIR . 'admin/bsf-analytics', 'author' => 'Brainstorm Force', 'time_to_display' => '+24 hours', ), ) );