Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
swift-performance
/
modules
/
cache
:
loader.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Plugin Name: %PLUGIN_NAME% */ class Swift_Performance_Loader { public static function load(){ wp_cookie_constants(); $plugins = get_option('active_plugins'); $plugin_file = '%PLUGIN_DIR%performance.php'; if (in_array('%PLUGIN_SLUG%', (array)$plugins)){ if (file_exists($plugin_file)){ include_once $plugin_file; } // Try fallback (staging, moving, other special cases) else if (file_exists(WP_PLUGIN_DIR . '/swift-performance/performance.php')){ include_once WP_PLUGIN_DIR . '/swift-performance/performance.php'; } } } } Swift_Performance_Loader::load(); ?>