Current Path : /home/church/www/wp-content/plugins/dynamic-widgets/ |
Current File : /home/church/www/wp-content/plugins/dynamic-widgets/dynwid_class.php |
<?php /** * dynwid_class.php - Dynamic Widgets Classes loader (PHP5) * * @copyright 2011 Jacco Drabbe */ defined('ABSPATH') or die("No script kiddies please!"); $dh = opendir(DW_CLASSES); while ( ($file = readdir($dh)) !== FALSE ) { if ( $file != '.' && $file != '..' && substr(strrchr($file, '_'), 1) == 'class.php' ) { include_once(DW_CLASSES . $file); } } ?>