Hooks
Under the hooks folder, we have 2 files actions.php and filters.php
Actions
Action is one of the two types of hooks. They provide a way for running a function at a specific point in the execution of miniCal Core. Callback functions for an Action do not return anything to the calling Action hook. You can create a hook in the application/hooks folder, here we have created an actions.php file. You can find the list of actions here miniCal Action list.
Filters
They provide a way for functions to modify data during the execution of the miniCal Core. They are the counterpart to action. You can create a hook in the application/hooks folder, here we have created a filers.php file.
filters.php
Last updated