I'm writing a plugin hook. Now, it has a hook handler as follows
elgg_register_plugin_hook_handler('index', 'system', 'oa_pc_plugin_hook_handler', 1);
And how can I get the identifier in oa_pc_plugin_hook_handler()?
Eg: abc.com/hello/world
How...
Great! It worked perfectly! Thank you :)
And now I also want to remove default css and js. I used
elgg_unregister_css('elgg');elgg_unregister_js('elgg');
It worked but the vendor jquery 1.6.4 is still used. I want to replace it by jquery...
I'm writing a plugin to support mobile/tablet. For some reasons, my system don't need lots of default features, so I want to unregister all default page handlers and completely rewrite all.
Is there anyway to do that ?
Thank you so much for...