Code

Added mirror url support
[gosa.git] / gen_function_list.php
index 7b48581fa77d12bc3ba574f26bbabdfd07b8ceaa..9f828273185131f9918ba838313a242dbe3f7e18 100755 (executable)
@@ -1,9 +1,9 @@
-#!/usr/bin/php -q
+#!/usr/bin/php4 -q
 <?php
 /*
 /*
  * This code is part of GOsa (https://gosa.gonicus.de)
- * Copyright (C) 2003 Cajus Pollmeier
+ * Copyright (C) 2005 Jan Wenzel
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-/* This file builds a list of used php_functions in all files matching $pattern
- * (walks recursively through current directory but skips dirs matching $skip_dirs).
- *
- * 1. builds an array of filenames
- * 2. get contents from files
- * 2. fetches user defined functions using content
- * 3. fetches functions calls using content
- * 4. checks function calls for matching known functions
- */
-
 include('include/functions_test.inc');
 
 // Build Array of called functions
@@ -48,7 +38,8 @@ if(is_writable($file)) {
        // Open filehandle
        $fh= fopen($file,'w');
        if($fh != null) {
-               fwrite($fh,"<?php\n".var_export($array,true)."\n?>");
+               fwrite($fh,"return(\n".var_export($array,true).");");
+               fclose($fh);
        }
 }
 ?>