4ef4c993469b617bcbb1cf27a890f5110bc167e9
[glcas.git] / lib / plugins / www.php
1 <?php
2
3 global $preWebComponents, $webComponents, $postWebComponents;
4
5
6 function goWebProcessor()
7 {
8         global $preWebComponents, $webComponents, $postWebComponents;
9         
10         foreach($preWebComponents as $function) {
11                 if(function_exists($function)) $function();
12         }
13         
14         foreach($webComponents as $function) {
15                 if(function_exists($function)) $function();
16         }
17         
18         foreach($postWebComponents as $function) {
19                 if(function_exists($function)) $function();
20         }
21 }
22 ?>