]> granicus.if.org Git - php/commitdiff
Adding webteam to credits.
authorJames Moore <jmoore@php.net>
Wed, 14 Mar 2001 21:28:58 +0000 (21:28 +0000)
committerJames Moore <jmoore@php.net>
Wed, 14 Mar 2001 21:28:58 +0000 (21:28 +0000)
ext/standard/credits.c
ext/standard/credits.h
ext/standard/info.h

index 3a64a51cd70b993d3eadd4ddc34e25d44a987c01..9123e11d702ce62b3926056407ab6974036e8c8d 100644 (file)
@@ -98,6 +98,14 @@ PHPAPI void php_print_credits(int flag)
                php_info_print_table_end();
        }
 
+       if (flag & PHP_CREDITS_WEB) {
+               /* Website Team */
+               php_info_print_table_start();
+               php_info_print_table_header(1, "PHP Website Team");
+               php_info_print_table_row(1, "Hojtsy Gabor, Colin Viebrock, Jim Winstead");
+               php_info_print_table_end();
+       }
+
        if (flag & PHP_CREDITS_FULLPAGE) {
                PUTS("</body></html>\n");
        }
index a8b92f9ff006c06bec0bf0234138524ce7e074d0..62785caf335c1d2710926d2e2cb390996807756a 100644 (file)
 
 /* $Id$ */
 
+#ifndef CREDITS_H
+#define CREDITS_H
+
+#ifndef HAVE_CREDITS_DEFS
+#define HAVE_CREDITS_DEFS
 
 #define PHP_CREDITS_GROUP                      (1<<0)
 #define PHP_CREDITS_GENERAL                    (1<<1)
 #define PHP_CREDITS_MODULES                    (1<<3)
 #define PHP_CREDITS_DOCS                       (1<<4)
 #define PHP_CREDITS_FULLPAGE           (1<<5)
+#define PHP_CREDITS_QA                         (1<<6)
+#define PHP_CREDITS_WEB             (1<<7)
 #define PHP_CREDITS_ALL                                0xFFFFFFFF
 
+#endif /* HAVE_CREDITS_DEFS */
+
 PHPAPI void php_print_credits(int flag);
 
+#endif
index 54cd15797a7ee65201b9d7b1b947750f265fcc97..3a246f0a081fc733a64c751bc06302b363beeac5 100644 (file)
@@ -35,6 +35,8 @@
 #define PHP_INFO_LICENSE                       (1<<6)
 #define PHP_INFO_ALL                           0xFFFFFFFF
 
+#ifndef HAVE_CREDITS_DEFS
+#define HAVE_CREDITS_DEFS
 
 #define PHP_CREDITS_GROUP                      (1<<0)
 #define PHP_CREDITS_GENERAL                    (1<<1)
 #define PHP_CREDITS_DOCS                       (1<<4)
 #define PHP_CREDITS_FULLPAGE           (1<<5)
 #define PHP_CREDITS_QA                         (1<<6)
+#define PHP_CREDITS_WEB             (1<<7)
 #define PHP_CREDITS_ALL                                0xFFFFFFFF
 
+#endif /* HAVE_CREDITS_DEFS */
+
 #define PHP_LOGO_GUID            "PHPE9568F34-D428-11d2-A769-00AA001ACF42"
 #define PHP_EGG_LOGO_GUID      "PHPE9568F36-D428-11d2-A769-00AA001ACF42"
 #define ZEND_LOGO_GUID         "PHPE9568F35-D428-11d2-A769-00AA001ACF42"