| 1 |
<?php |
| 2 |
$subdir = dirname( __FILE__ ); |
| 3 |
$ver = SIMPLEPIE_VERSION; |
| 4 |
$mod = basename( __FILE__ ); |
| 5 |
|
| 6 |
if ( class_exists( 'SimplePie\\Cache' ) ) { |
| 7 |
$modClassPath = "{$subdir}/default/{$mod}"; |
| 8 |
} |
| 9 |
else { |
| 10 |
$modClassPath = "{$subdir}/SimplePie_Cache/{$mod}"; |
| 11 |
} |
| 12 |
|
| 13 |
require_once "{$modClassPath}"; |
| 14 |
|