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';
}
}