Global Hook to Trigger on Read Record (ReadHook)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fberbert
    Junior Member
    • Dec 2024
    • 7

    Global Hook to Trigger on Read Record (ReadHook)

    According to the official EspoCRM documentation, the 7 available global hooks are:
    • beforeSave
    • afterSave
    • beforeRemove
    • afterRemove
    • afterRelate
    • afterUnrelate
    • afterMassRelate
    I found an interface called ReadHook in the source code:

    Code:
    use Espo\Core\Record\Hook\ReadHook;
    Here is the content of ReadHook.php:

    Code:
    namespace Espo\Core\Record\Hook;
    
    use Espo\ORM\Entity;
    use Espo\Core\Record\ReadParams;
    
    /**
    * @template TEntity of Entity
    */
    interface ReadHook
    {
        public function process(Entity $entity, ReadParams $params): void;
    }
    I tried to create a global hook implementing this ReadHook interface. The beforeSave and afterSave methods are working perfectly, but the process() method from ReadHook is not being triggered.

    Here’s the complete code I’m using:

    Code:
    <?php
    
    namespace Espo\Modules\ArcCustomPlugin\Hooks\Common;
    
    use Espo\Core\Hook\Hook\BeforeSave;
    use Espo\Core\Hook\Hook\AfterSave;
    use Espo\Core\Record\Hook\ReadHook;
    use Espo\ORM\Entity;
    use Espo\ORM\Repository\Option\SaveOptions;
    use Espo\Core\Record\ReadParams;
    use Espo\Core\Utils\Log;
    
    class GlobalHook implements BeforeSave, AfterSave, ReadHook
    {
       public static int $order = 5;
    
       public function __construct(private Log $log)
       {
       }
    
       public function beforeSave(Entity $entity, SaveOptions $options): void
       {
          $this->log->debug('GlobalHook - beforeSave');
       }
    
       public function afterSave(Entity $entity, SaveOptions $options): void
       {
          $this->log->debug('GlobalHook - afterSave');
       }
    
       public function process(Entity $entity, ReadParams $params): void
       {
          $entityName = $entity->getEntityType();
          $this->log->debug('GlobalHook - process (read hook) - entityName: ' . $entityName);
       }
    }
    Is it possible to register a global hook that listens to the ReadHook event?


    Any help would be appreciated!
  • yuri
    Member
    • Mar 2014
    • 8801

    #2
    Record hooks are defined in metadata. https://docs.espocrm.com/development...kclassnamelist

    They should not be placed in the Hooks namespaces.

    Example: https://github.com/espocrm/espocrm/b...Email.json#L41
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    Working...