PluginProbe
FeedWordPress / 2024.1119
FeedWordPress v2024.1119
trunk 0.8 0.9 0.91 0.95 0.96 0.97 0.98 0.981 0.99 0.991 0.992 0.993 2008.1030 2008.1101 2008.1105 2008.1214 2009.0612 2009.0613 2009.0618 2009.0707 2009.1111 2009.1112 2010.0127 2010.0528 All 65 releases
feedwordpress / extend / SimplePie / feedwordpie_cache.class.php

feedwordpie_cache.class.php in FeedWordPress 2024.1119, at extend/SimplePie/feedwordpie_cache.class.php

14 lines 285 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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