we use apc for our current project. I really would appreciate support for apc-style constant definition, especially for the code explorer.
$constants = array(
'ERROR_NONE' => 1,
'ERROR_EXCEPTION' => 2,
'ERROR_SESSIONOUT' => 3,
'ERROR_KEINE_BERECHTIGUNG' => 9,
'ERROR_PLATZ_BELEGT' => 99,
'GEB_ART_WOHN' => 1,
'GEB_ART_PROD' => 2,
'GEB_ART_KAUF' => 3,
'GEB_ART_KULTUR' => 4
);
apc_define_constants('kc_const', $constants); |
It would be great if ERROR_NONE etcpp would be available in code explorer instead of $constants. and btw: I would really appreciate if code explorer could remember which folders are closed when changing any setting. Or, even better: If I could hide folders and files from code explorer (but show them in the workspace)
m*