WordPress Like Plugin System For Codeigniter PHP Framework

Ever wanted to have plugin functionality in your Codeigniter applications similar to what WordPress has? I’ve started developing a plugin system that lets you define hooks with or without arguments, to modify certain parts of your application without your users having to edit core files.

Use is mostly: add_action(), remove_action() and do_action() – but I’ll go in depth later on.

Documentation is sparse for now, but if you’re a seasoned programmer you should understand how it works. There is a partial plugin example in the repo too.

Check it out on Github here.