PluginProbe
easy.jobs – AI powered Job Listing, Job Board, Career Page, Recruitment & Hiring Solution / 2.8.1
easy.jobs – AI powered Job Listing, Job Board, Career Page, Recruitment & Hiring Solution v2.8.1
2.8.1 2.8.0 2.7.4 2.7.3 2.7.2 trunk 1.0.0 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.4.0 All 102 releases
easyjobs / easyjobs.php

easyjobs.php in easy.jobs – AI powered Job Listing, Job Board, Career Page, Recruitment & Hiring Solution 2.8.1, at easyjobs.php

71 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 *
5 * @link https://easy.jobs
6 * @since 1.0.0
7 * @package easyjobs
8 *
9 * @wordpress-plugin
10 * Plugin Name: easy.jobs
11 * Plugin URI: https://easy.jobs
12 * Description: Easy solution for the job recruitment to attract, manage & hire right talent faster.
13 * Version: 2.8.1
14 * Author: easy.jobs
15 * Author URI: https://easy.jobs
16 * License: GPL-3.0+
17 * License URI: https://opensource.org/licenses/GPL-3.0
18 * Text Domain: easyjobs
19 * Domain Path: /languages
20 */
21
22 // If this file is called directly, abort.
23 if ( ! defined( 'WPINC' ) ) {
24 die;
25 }
26
27 /**
28 * Defines CONSTANTS for Whole plugins.
29 */
30 define( 'EASYJOBS_VERSION', '2.8.1' );
31 define( 'EASYJOBS_PLUGIN_URL', 'https://easy.jobs' );
32 define( 'EASYJOBS_URL', plugins_url( '/', __FILE__ ) );
33 define( 'EASYJOBS_ADMIN_URL', EASYJOBS_URL . 'admin/' );
34 define( 'EASYJOBS_PUBLIC_URL', EASYJOBS_URL . 'public/' );
35 define( 'EASYJOBS_FILE', __FILE__ );
36 define( 'EASYJOBS_BASENAME', plugin_basename( __FILE__ ) );
37 define( 'EASYJOBS_ROOT_DIR_PATH', plugin_dir_path( __FILE__ ) );
38 define( 'EASYJOBS_ADMIN_DIR_PATH', EASYJOBS_ROOT_DIR_PATH . 'admin/' );
39 define( 'EASYJOBS_PUBLIC_PATH', EASYJOBS_ROOT_DIR_PATH . 'public/' );
40 define( 'EASYJOBS_TEXTDOMAIN', 'easyjobs' );
41 define( 'EASYJOBS_APPLY_URL', esc_url( 'https://app.easy.jobs/job/a/' ) );
42
43 if ( defined( 'EASYJOBS_DEV' ) && ( EASYJOBS_DEV == true ) ) {
44 define( 'EASYJOBS_APP_URL', esc_url( 'https://app.easyjobs.dev' ) );
45 define( 'EASYJOBS_ANALYTICS_URL', esc_url( '//matomo.easyjobs.dev/' ) );
46 } else {
47 define( 'EASYJOBS_APP_URL', esc_url( 'https://app.easy.jobs' ) );
48 define( 'EASYJOBS_ANALYTICS_URL', esc_url( '//analytics.easy.jobs/' ) );
49 }
50 define( 'EASYJOBS_API_URL', EASYJOBS_APP_URL . '/api/v1/' );
51 /**
52 * The core plugin class that is used to define internationalization,
53 * admin-specific hooks, and public-facing site hooks.
54 */
55 require plugin_dir_path( __FILE__ ) . 'includes/class-easyjobs.php';
56
57 /**
58 * Begins execution of the plugin.
59 *
60 * Since everything within the plugin is registered via hooks,
61 * then kicking off the plugin from this point in the file does
62 * not affect the page life cycle.
63 *
64 * @since 1.0.0
65 */
66 function run_easyjobs() {
67 $plugin = new Easyjobs();
68 $plugin->run();
69 }
70 run_easyjobs();
71