| Server IP : 188.114.97.2 / Your IP : 104.23.243.200 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/nicolasj/www/blog.ecoledelangues.be/wp-content/plugins/wp-pro-quiz/ |
Upload File : |
<?php
/*
Plugin Name: WP-Pro-Quiz
Plugin URI: http://wordpress.org/extend/plugins/wp-pro-quiz
Description: A powerful and beautiful quiz plugin for WordPress.
Version: 0.37
Author: Julius Fischer
Author URI: http://www.it-gecko.de
Text Domain: wp-pro-quiz
Domain Path: /languages
*/
define('WPPROQUIZ_VERSION', '0.37');
define('WPPROQUIZ_DEV', false);
define('WPPROQUIZ_PATH', dirname(__FILE__));
define('WPPROQUIZ_URL', plugins_url('', __FILE__));
define('WPPROQUIZ_FILE', __FILE__);
define('WPPROQUIZ_PPATH', dirname(plugin_basename(__FILE__)));
define('WPPROQUIZ_PLUGIN_PATH', WPPROQUIZ_PATH . '/plugin');
$uploadDir = wp_upload_dir();
define('WPPROQUIZ_CAPTCHA_DIR', $uploadDir['basedir'] . '/wp_pro_quiz_captcha');
define('WPPROQUIZ_CAPTCHA_URL', $uploadDir['baseurl'] . '/wp_pro_quiz_captcha');
spl_autoload_register('wpProQuiz_autoload');
register_activation_hook(__FILE__, array('WpProQuiz_Helper_Upgrade', 'upgrade'));
add_action('plugins_loaded', 'wpProQuiz_pluginLoaded');
if (is_admin()) {
new WpProQuiz_Controller_Admin();
} else {
new WpProQuiz_Controller_Front();
}
function wpProQuiz_autoload($class)
{
$c = explode('_', $class);
if ($c === false || count($c) != 3 || $c[0] !== 'WpProQuiz') {
return;
}
switch ($c[1]) {
case 'View':
$dir = 'view';
break;
case 'Model':
$dir = 'model';
break;
case 'Helper':
$dir = 'helper';
break;
case 'Controller':
$dir = 'controller';
break;
case 'Plugin':
$dir = 'plugin';
break;
default:
return;
}
$classPath = WPPROQUIZ_PATH . '/lib/' . $dir . '/' . $class . '.php';
if (file_exists($classPath)) {
/** @noinspection PhpIncludeInspection */
include_once $classPath;
}
}
function wpProQuiz_pluginLoaded()
{
load_plugin_textdomain('wp-pro-quiz', false, WPPROQUIZ_PPATH . '/languages');
if (get_option('wpProQuiz_version') !== WPPROQUIZ_VERSION) {
WpProQuiz_Helper_Upgrade::upgrade();
}
}
function wpProQuiz_achievementsV3()
{
if (function_exists('achievements')) {
achievements()->extensions->wp_pro_quiz = new WpProQuiz_Plugin_BpAchievementsV3();
do_action('wpProQuiz_achievementsV3');
}
}
add_action('dpa_ready', 'wpProQuiz_achievementsV3');