. *******************************************************************************************/ if (! function_exists ( 'add_action' )) { header ( 'Status: 403 Forbidden' ); header ( 'HTTP/1.1 403 Forbidden' ); exit (); } if (! defined ( 'NAMESPACE_SEPARATOR' )) define ( 'NAMESPACE_SEPARATOR', '\\' ); /** * Define WP-Piwik autoloader * * @param string $class * class name */ function wp_piwik_autoloader($class) { if (substr ( $class, 0, 9 ) == 'WP_Piwik' . NAMESPACE_SEPARATOR) { $class = str_replace ( '.', '', str_replace ( NAMESPACE_SEPARATOR, DIRECTORY_SEPARATOR, substr ( $class, 9 ) ) ); require_once ('classes' . DIRECTORY_SEPARATOR . 'WP_Piwik' . DIRECTORY_SEPARATOR . $class . '.php'); } } /** * Show notice about outdated PHP version */ function wp_piwik_phperror() { echo '
'; printf ( __ ( 'WP-Matomo requires at least PHP 5.3. You are using the deprecated version %s. Please update PHP to use WP-Matomo.', 'wp-piwik' ), PHP_VERSION ); echo '