Wire::hasHook() method

Returns true if the method or property is hooked, false if it isn’t.

  • This method checks for both static hooks and local hooks.
  • Accepts a method() or property name as an argument.
  • Class context is assumed to be the current class this method is called on.
  • Also considers the class parents for hooks.

Example

if($pages->hasHook('find()')) {
  // the Pages::find() method is hooked
}

Usage

$bool = $wire->hasHook(string $name);

Arguments

NameType(s)Description
namestring

Method() name or property name:

  • If checking for a hooked method, it should be in the form method().
  • If checking for a hooked property, it should be in the form property.

Return value

bool

True if this class instance has the hook, false if not.

Exceptions

Method can throw exceptions on error:

  • WireException - When you try to call it with a Class::something() type method, which is not supported.


Wire methods and properties

API reference based on ProcessWire core version 3.0.236

Latest news

  • ProcessWire Weekly #514
    In the 514th issue of ProcessWire Weekly we'll check out the latest blog post from Ryan, introduce two new third party modules — Page List Versions Counter and Fieldtype Fieldset Panel — and more. Read on!
    Weekly.pw / 16 March 2024
  • Invoices Site Profile
    The new invoices site profile is a free invoicing application developed in ProcessWire. It enables you to create invoices, record payments to them, email invoices to clients, print invoices, and more. This post covers all the details.
    Blog / 15 March 2024
  • Subscribe to weekly ProcessWire news

“Indeed, if ProcessWire can be considered as a CMS in its own right, it also offers all the advantages of a CMF (Content Management Framework). Unlike other solutions, the programmer is not forced to follow the proposed model and can integrate his/her ways of doing things.” —Guy Verville, Spiria Digital Inc.