diff options
author | Colin Viebrock <cmv@php.net> | 2000-04-05 20:17:02 +0000 |
---|---|---|
committer | Colin Viebrock <cmv@php.net> | 2000-04-05 20:17:02 +0000 |
commit | 1ddc9ff852b8698fd395ff771c6aa214d9543d9a (patch) | |
tree | 332fbb70e93af5b2ce61d554854af2570ed690e2 /ext/standard/info.h | |
parent | 794f3121766c8f807f587803950e4d61b39c2950 (diff) | |
download | php-git-1ddc9ff852b8698fd395ff771c6aa214d9543d9a.tar.gz |
Prettying up the output of phpinfo(). Someone has to tell me how
to get a new .gif logo in there, and why the ZEND_DEBUG output is
causing seg faults.
I also need to go through all the modules and fix up the output they
create.
Diffstat (limited to 'ext/standard/info.h')
-rw-r--r-- | ext/standard/info.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ext/standard/info.h b/ext/standard/info.h index eaf7f38c6d..3094585b1a 100644 --- a/ext/standard/info.h +++ b/ext/standard/info.h @@ -32,9 +32,9 @@ #ifndef _INFO_H #define _INFO_H -#define PHP_ENTRY_NAME_COLOR "#FFFFFF" -#define PHP_CONTENTS_COLOR "#DDDDDD" -#define PHP_HEADER_COLOR "#FFFF99" +#define PHP_ENTRY_NAME_COLOR "#CCCCFF" +#define PHP_CONTENTS_COLOR "#CCCCCC" +#define PHP_HEADER_COLOR "#9999CC" #define PHP_INFO_GENERAL (1<<0) #define PHP_INFO_CREDITS (1<<1) @@ -64,10 +64,14 @@ PHP_FUNCTION(php_logo_guid); PHP_FUNCTION(zend_logo_guid); PHPAPI void php_print_info(int flag); PHPAPI void php_print_credits(int flag); - - +PHPAPI void php_print_style(void); PHPAPI void php_info_print_table_header(int num_cols, ...); PHPAPI void php_info_print_table_row(int num_cols, ...); +PHPAPI void php_info_print_table_start(void); +PHPAPI void php_info_print_table_end(void); +PHPAPI void php_info_print_box_start(int bg); +PHPAPI void php_info_print_box_end(void); +PHPAPI void php_info_print_hr(void); void register_phpinfo_constants(INIT_FUNC_ARGS); |