Replace deprecated Addon::callHooks with Hook::callAll

- Update documentation
This commit is contained in:
Hypolite Petovan 2018-12-26 01:06:24 -05:00
parent 895b3abf32
commit 55e54bb950
58 changed files with 450 additions and 475 deletions

View file

@ -10,7 +10,7 @@ use Friendica\Content\Pager;
use Friendica\Content\Text\BBCode;
use Friendica\Content\Widget;
use Friendica\Core\ACL;
use Friendica\Core\Addon;
use Friendica\Core\Hook;
use Friendica\Core\L10n;
use Friendica\Core\Protocol;
use Friendica\Core\Renderer;
@ -194,7 +194,7 @@ class Contact extends BaseModule
return; // NOTREACHED
}
Addon::callHooks('contact_edit_post', $_POST);
Hook::callAll('contact_edit_post', $_POST);
$profile_id = intval(defaults($_POST, 'profile-assign', 0));
if ($profile_id) {
@ -659,7 +659,7 @@ class Contact extends BaseModule
$arr = ['contact' => $contact, 'output' => $o];
Addon::callHooks('contact_edit', $arr);
Hook::callAll('contact_edit', $arr);
return $arr['output'];
}