When I look at at some PHP applications, they typically have hooks. Drupal and Wordpress are examples. When I look at an application from the .NET world like Orchard or Umbraco, one subscribes to events.
On the other hand, I saw Drupal also has events, https://www.drupal.org/docs/8/modules/simple-fb-connect/eventsubscriber-example
WordPress has hooks only (that I could find), though they do say hooks are hooking into events. https://codex.wordpress.org/Plugin_API#Hook_to_WordPress
It appears to me, when an application with a plugin/module extensibility framework references an Event, they are meaning an Object Oriented Design that uses Dependency Injection, typically with a container that wires it all up. But, if not then it is a program that saves references in an array, using them at an appropriate part of the execution sequence calling the hook. They are close in operation but not implementation.
Are hooks the event subscriptions the same thing? I've also seen them called "Signals."