Second of all, the code you wrote will not work because you returned return PLUGIN_HANDLED when really you should return PLUGIN_HANDLED_MAIN.
PHP Code:
#define PLUGIN_HANDLED 1 /* stop other plugins */
#define PLUGIN_HANDLED_MAIN 2 /* to use in client_command(), continue all plugins but stop the command */