. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\ORM\Repository; use Espo\ORM\Entity; use Espo\ORM\Query\Select; interface HookMediator { /** * @param array $options */ public function beforeSave(Entity $entity, array $options): void; /** * @param array $options */ public function afterSave(Entity $entity, array $options): void; /** * @param array $options */ public function beforeRemove(Entity $entity, array $options): void; /** * @param array $options */ public function afterRemove(Entity $entity, array $options): void; /** * @param array|null $columnData Role values. * @param array $options */ public function beforeRelate( Entity $entity, string $relationName, Entity $foreignEntity, ?array $columnData, array $options ): void; /** * @param array|null $columnData Role values. * @param array $options */ public function afterRelate( Entity $entity, string $relationName, Entity $foreignEntity, ?array $columnData, array $options ): void; /** * @param array $options */ public function beforeUnrelate(Entity $entity, string $relationName, Entity $foreignEntity, array $options): void; /** * @param array $options */ public function afterUnrelate(Entity $entity, string $relationName, Entity $foreignEntity, array $options): void; /** * @param array $options */ public function beforeMassRelate(Entity $entity, string $relationName, Select $query, array $options): void; /** * @param array $options */ public function afterMassRelate(Entity $entity, string $relationName, Select $query, array $options): void; }