ai-builder
1 week ago
astra-notices
1 month ago
bsf-quick-links
3 years ago
getting-started
3 weeks ago
gutenberg-templates
1 month ago
nps-survey
1 month ago
onboarding
1 week ago
one-onboarding
1 month ago
starter-templates-importer
1 month ago
zip-ai
3 weeks ago
zipwp-images
1 month ago
class-astra-sites-ast-block-templates.php
1 year ago
class-astra-sites-nps-survey.php
1 year ago
class-astra-sites-zip-ai.php
1 year ago
class-astra-sites-zipwp-images.php
1 year ago
class-astra-sites-nps-survey.php
102 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Init |
| 4 | * |
| 5 | * @since 1.0.0 |
| 6 | * @package NPS Survey |
| 7 | */ |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; |
| 11 | } |
| 12 | |
| 13 | if ( ! class_exists( 'Astra_Sites_Nps_Survey' ) ) : |
| 14 | |
| 15 | /** |
| 16 | * Admin |
| 17 | */ |
| 18 | class Astra_Sites_Nps_Survey { |
| 19 | /** |
| 20 | * Instance |
| 21 | * |
| 22 | * @since 1.0.0 |
| 23 | * @var (Object) Astra_Sites_Nps_Survey |
| 24 | */ |
| 25 | private static $instance = null; |
| 26 | |
| 27 | /** |
| 28 | * Get Instance |
| 29 | * |
| 30 | * @since 1.0.0 |
| 31 | * |
| 32 | * @return object Class object. |
| 33 | */ |
| 34 | public static function get_instance() { |
| 35 | if ( ! isset( self::$instance ) ) { |
| 36 | self::$instance = new self(); |
| 37 | } |
| 38 | |
| 39 | return self::$instance; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Constructor. |
| 44 | * |
| 45 | * @since 1.0.0 |
| 46 | */ |
| 47 | private function __construct() { |
| 48 | $this->version_check(); |
| 49 | add_action( 'init', array( $this, 'load' ), 999 ); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Version Check |
| 54 | * |
| 55 | * @return void |
| 56 | */ |
| 57 | public function version_check() { |
| 58 | |
| 59 | $file = realpath( dirname( __FILE__ ) . '/nps-survey/version.json' ); |
| 60 | |
| 61 | // Is file exist? |
| 62 | if ( is_file( $file ) ) { |
| 63 | // @codingStandardsIgnoreStart |
| 64 | $file_data = json_decode( file_get_contents( $file ), true ); |
| 65 | // @codingStandardsIgnoreEnd |
| 66 | global $nps_survey_version, $nps_survey_init; |
| 67 | $path = realpath( dirname( __FILE__ ) . '/nps-survey/nps-survey.php' ); |
| 68 | $version = isset( $file_data['nps-survey'] ) ? $file_data['nps-survey'] : 0; |
| 69 | |
| 70 | if ( null === $nps_survey_version ) { |
| 71 | $nps_survey_version = '1.0.0'; |
| 72 | } |
| 73 | |
| 74 | // Compare versions. |
| 75 | if ( version_compare( $version, $nps_survey_version, '>=' ) ) { |
| 76 | $nps_survey_version = $version; |
| 77 | $nps_survey_init = $path; |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Load latest plugin |
| 84 | * |
| 85 | * @return void |
| 86 | */ |
| 87 | public function load() { |
| 88 | |
| 89 | global $nps_survey_version, $nps_survey_init; |
| 90 | if ( is_file( realpath( $nps_survey_init ) ) ) { |
| 91 | include_once realpath( $nps_survey_init ); |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Kicking this off by calling 'get_instance()' method |
| 98 | */ |
| 99 | Astra_Sites_Nps_Survey::get_instance(); |
| 100 | |
| 101 | endif; |
| 102 |