Replace deprecated Addon::callHooks by Hook::callAll

This commit is contained in:
Hypolite Petovan 2018-12-26 01:08:41 -05:00
parent aa5fbb4994
commit eaeb834819
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@
* Author: Johannes Schwab <https://friendica.jschwab.org/profile/ddorian>
*/
use Friendica\Core\Addon;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
function smileybutton_install() {
@ -97,7 +98,7 @@ function show_button(Friendica\App $a, &$b) {
// Call hooks to get aditional smileies from other addons
$params = ['texts' => $texts, 'icons' => $icons, 'string' => ""]; //changed
Addon::callHooks('smilie', $params);
Hook::callAll('smilie', $params);
//Generate html for smiley list
$s = "<table class=\"smiley-preview\"><tr>\n\t";

View File

@ -31,6 +31,7 @@ use Friendica\Content\Text\BBCode;
use Friendica\Content\Text\HTML;
use Friendica\Core\Addon;
use Friendica\Core\Authentication;
use Friendica\Core\Hook;
use Friendica\Core\L10n;
use Friendica\Core\Logger;
use Friendica\Core\PConfig;
@ -475,5 +476,5 @@ function windowsphonepush_login(App $a)
Authentication::setAuthenticatedSessionForUser($record);
$_SESSION["allow_api"] = true;
Addon::callHooks('logged_in', $a->user);
Hook::callAll('logged_in', $a->user);
}