Path : /hermes/bosweb/b1536/lidiapaul.com.au/wp-content/plugins/cs-framework/payments/ |
Current < : /hermes/bosweb/b1536/lidiapaul.com.au/wp-content/plugins/cs-framework/payments/config.php |
<?php /** * File Type: Payment Configuration * */ $dir = cs_framework::plugin_dir().'/payments/gateways/'; $dh = opendir($dir); if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { $ext = pathinfo($file, PATHINFO_EXTENSION); if( $ext == 'php' ) { include(cs_framework::plugin_dir().'/payments/gateways/'.$file); } } closedir($dh); } } ?>