HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/gopalak/public_html/wp-content/plugins/jobboardwp/includes/ajax/class-init.php
<?php
namespace jb\ajax;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'jb\ajax\Init' ) ) {


	/**
	 * Class Init
	 *
	 * @package jb\ajax
	 */
	class Init {


		/**
		 * Init constructor.
		 */
		public function __construct() {
			add_action( 'admin_init', array( $this, 'init_current_locale' ), 0 );

			add_action( 'wp_ajax_jb_dismiss_notice', array( $this->notices(), 'dismiss_notice' ) );
			add_action( 'wp_ajax_jb_get_pages_list', array( $this->settings(), 'get_pages_list' ) );

			add_action( 'wp_ajax_jb-get-jobs', array( $this->jobs(), 'get_jobs' ) );
			add_action( 'wp_ajax_nopriv_jb-get-jobs', array( $this->jobs(), 'get_jobs' ) );

			add_action( 'wp_ajax_jb-get-categories', array( $this->jobs(), 'get_categories' ) );
			add_action( 'wp_ajax_nopriv_jb-get-categories', array( $this->jobs(), 'get_categories' ) );

			add_action( 'wp_ajax_jb-upload-company-logo', array( $this->employer(), 'upload_logo' ) );
			add_action( 'wp_ajax_nopriv_jb-upload-company-logo', array( $this->employer(), 'upload_logo' ) );

			add_action( 'wp_ajax_jb-get-employer-jobs', array( $this->jobs(), 'get_employer_jobs' ) );

			add_action( 'wp_ajax_jb-delete-job', array( $this->jobs(), 'delete_job' ) );
			add_action( 'wp_ajax_jb-fill-job', array( $this->jobs(), 'fill_job' ) );
			add_action( 'wp_ajax_jb-unfill-job', array( $this->jobs(), 'unfill_job' ) );

			add_action( 'wp_ajax_jb-validate-job-data', array( $this->jobs(), 'validate_job' ) );
		}


		/**
		 * Init current locale if exists
		 */
		public function init_current_locale() {
			// phpcs:disable WordPress.Security.NonceVerification -- don't need verifying there just the information about locale from JS to AJAX handlers
			if ( ! empty( $_REQUEST['jb_current_locale'] ) ) {
				$locale = sanitize_key( $_REQUEST['jb_current_locale'] );
				/** This action is documented in includes/admin/class-init.php */
				do_action( 'jb_admin_init_locale', $locale );
			}
			// phpcs:enable WordPress.Security.NonceVerification
		}


		/**
		 * All AJAX includes
		 *
		 * @since 1.0
		 */
		public function includes() {
			JB()->admin()->metabox();
		}


		/**
		 * Check nonce
		 *
		 * @param bool|string $action
		 *
		 * @since 1.0
		 */
		public function check_nonce( $action = false ) {
			$nonce  = isset( $_REQUEST['nonce'] ) ? sanitize_key( $_REQUEST['nonce'] ) : '';
			$action = empty( $action ) ? 'jb-common-nonce' : $action;

			if ( ! wp_verify_nonce( $nonce, $action ) ) {
				wp_send_json_error( __( 'Wrong AJAX Nonce', 'jobboardwp' ) );
			}
		}


		/**
		 * @return Notices
		 *
		 * @since 1.0
		 */
		public function notices() {
			if ( empty( JB()->classes['jb\ajax\notices'] ) ) {
				JB()->classes['jb\ajax\notices'] = new Notices();
			}
			return JB()->classes['jb\ajax\notices'];
		}


		/**
		 * @return Settings
		 *
		 * @since 1.1.1
		 */
		public function settings() {
			if ( empty( JB()->classes['jb\ajax\settings'] ) ) {
				JB()->classes['jb\ajax\settings'] = new Settings();
			}
			return JB()->classes['jb\ajax\settings'];
		}


		/**
		 * @return Jobs
		 *
		 * @since 1.0
		 */
		public function jobs() {
			if ( empty( JB()->classes['jb\ajax\jobs'] ) ) {
				JB()->classes['jb\ajax\jobs'] = new Jobs();
			}
			return JB()->classes['jb\ajax\jobs'];
		}


		/**
		 * @return Employer
		 *
		 * @since 1.0
		 */
		public function employer() {
			if ( empty( JB()->classes['jb\ajax\employer'] ) ) {
				JB()->classes['jb\ajax\employer'] = new Employer();
			}
			return JB()->classes['jb\ajax\employer'];
		}
	}
}