PluginProbe ʕ •ᴥ•ʔ
Atarim – Visual Feedback, Review & AI Collaboration / 5.0
Atarim – Visual Feedback, Review & AI Collaboration v5.0
5.0 trunk 3.10 3.11 3.12 3.13 3.14 3.15 3.16 3.17 3.18 3.19 3.2.0 3.2.1 3.22 3.22.1 3.22.2 3.22.3 3.22.4 3.22.5 3.22.6 3.3.0 3.3.1 3.3.2 3.3.2.1 3.3.2.2 3.3.3 3.30 3.31 3.32 3.4 3.4.1 3.4.3 3.4.4 3.5 3.5.1 3.6 3.6.1 3.7 3.8 3.9 3.9.1 3.9.2 3.9.3 3.9.4 3.9.6 3.9.6.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.2 4.2.1 4.2.2 4.3 4.3.1 4.3.2 4.3.3 4.3.4 4.3.5 4.4
atarim-visual-collaboration / includes / class-define-constant.php
atarim-visual-collaboration / includes Last commit date
class-ajax-functions.php 2 weeks ago class-define-constant.php 2 weeks ago class-functions.php 2 weeks ago do-it.php 2 weeks ago inject-script.php 2 weeks ago
class-define-constant.php
27 lines
1 <?php
2 if (! defined('ABSPATH')) {
3 exit; // Exit if accessed directly
4 }
5
6 class AVCF_Constants {
7
8 public function __construct() {
9 // Define constants
10 $this->avcf_define_constant();
11 }
12
13 public function avcf_define_constant() {
14 define( 'AVCF_VERSION', '5.0' );
15 define( 'AVCF_SITE_URL', site_url() );
16 define( 'AVCF_HOME_URL', home_url() );
17 define( 'AVCF_MAIN_SITE_URL', 'https://atarim.io' );
18 define( 'AVCF_APP_SITE_URL', 'https://app.atarim.io' );
19 define( 'AVCF_CRM_API', 'https://api.atarim.io/' );
20 define( 'AVCF_SCRIPT_URL', 'https://ij-script.pages.dev/atarim.js' );
21 define( 'AVCF_LEARN_SITE_URL', 'https://academy.atarim.io' );
22 }
23 }
24
25 new AVCF_Constants();
26
27