Actualización
This commit is contained in:
19
main/inc/lib/hook/HookPortfolioItemEdited.php
Normal file
19
main/inc/lib/hook/HookPortfolioItemEdited.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/* For licensing terms, see /license.txt */
|
||||
|
||||
class HookPortfolioItemEdited extends HookEvent implements HookPortfolioItemEditedEventInterface
|
||||
{
|
||||
protected function __construct()
|
||||
{
|
||||
parent::__construct('HookPortfolioItemEdited');
|
||||
}
|
||||
|
||||
public function notifyItemEdited()
|
||||
{
|
||||
/** @var HookPortfolioItemEditedObserverInterface $observer */
|
||||
foreach ($this->observers as $observer) {
|
||||
$observer->hookItemEdited($this);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user