PluginProbe
Atarim – AI Agency for WordPress: Edit Pages, Fix Code, Update Plugins, SEO & Client Feedback / 4.3.5
Atarim – AI Agency for WordPress: Edit Pages, Fix Code, Update Plugins, SEO & Client Feedback v4.3.5
5.1.3 5.1.2 5.1.1 5.1 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 All 75 releases
atarim-visual-collaboration / atarim-visual-collaboration.php
atarim-visual-collaboration.php
40 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Plugin Name: Atarim - Visual Feedback, Review & AI Collaboration
4 * Description: Make collecting feedback on WordPress sites MUCH faster and easier, with the visual collaboration tool used on over 120,000 websites worldwide.
5 * Version: 4.3.5
6 * Requires at least: 5.0
7 * Requires PHP: 7.4
8 * Author: Atarim
9 * Author URI: https://atarim.io/
10 * License: GPL 3.0 or later
11 * Text Domain: atarim-visual-collaboration
12 * Domain Path: /languages
13 */
14
15 if (!defined('ABSPATH')) {
16 exit; // Exit if accessed directly
17 }
18
19 define('AVCF_PLUGIN_NAME', trim(dirname(plugin_basename(__FILE__)), '/'));
20 define('AVCF_PLUGIN_DIR', plugin_dir_path(__FILE__));
21 define('AVCF_PLUGIN_URL', plugin_dir_url(__FILE__));
22 define('AVCF_PLUGIN_BASE', plugin_basename(__FILE__));
23
24 require_once(plugin_dir_path(__FILE__) . 'includes/class-define-constant.php');
25 require_once(plugin_dir_path(__FILE__) . 'includes/class-functions.php');
26 require_once(plugin_dir_path(__FILE__) . 'includes/class-ajax-functions.php');
27
28 if(is_admin()) {
29 require_once(AVCF_PLUGIN_DIR . 'admin/class-avcf-settings.php');
30 require_once(AVCF_PLUGIN_DIR . 'admin/class-user-meta.php');
31 }
32
33 // Load text domain for translations
34 function avcf_load_textdomain() {
35 load_plugin_textdomain(AVCF_PLUGIN_NAME, false, dirname(AVCF_PLUGIN_BASE) . '/languages');
36 }
37 add_action('plugins_loaded', 'avcf_load_textdomain');
38
39 require_once(plugin_dir_path(__FILE__) . 'includes/inject-script.php');
40