summaryrefslogtreecommitdiffstats
path: root/code/handlers.inc.php
blob: 5410de0034226fc363e9f1d94e03b7390d745ba8 (plain)
1
2
3
4
5
6
7
8
9
<?PHP
  $dir = opendir('handlers');
  
  while($file = readdir($dir))
    if($file[0] != '.' && substr($file, -8) == '.inc.php')
      include('handlers/' . $file);
  
  closedir($dir);
?>