HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/shootinschool/wp-content/plugins/fooevents_custom_attendee_fields/config.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; 

class FooEvents_Custom_Attendee_Fields_Config {
    
    public $classPath;
    public $templatePath; 
    public $scriptsPath;
    public $stylesPath;
    public $path;
    public $pluginFile;
    
    /**
     * Initialize configuration variables to be used as object.
     * 
     */
    public function __construct() {
        
        $this->classPath = plugin_dir_path( __FILE__ ).'classes/';
        $this->templatePath = plugin_dir_path( __FILE__ ).'templates/';
        $this->scriptsPath = plugin_dir_url(__FILE__) .'js/';
        $this->stylesPath = plugin_dir_url(__FILE__) .'css/';
        $this->path = plugin_dir_path( __FILE__ );
        $this->pluginFile = $this->path.'fooevents-custom-attendee-fields.php';
        
    }
    
}