X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=widgets%2Fwidgets.php;h=1c7489f1ca6503f05c142721048db92e277cd900;hb=3b0decec7f868c831ccba12e82d88b122a637de1;hp=69f03a8ee4341c535bc5a9b5953ef7bef9b4e8b5;hpb=0afd633346b517894ff8e92c705bd5d052dd06a2;p=friendica-addons.git diff --git a/widgets/widgets.php b/widgets/widgets.php index 69f03a8e..1c7489f1 100644 --- a/widgets/widgets.php +++ b/widgets/widgets.php @@ -6,16 +6,17 @@ * Author: Fabio Comuni */ use Friendica\Core\Addon; +use Friendica\Core\L10n; use Friendica\Core\PConfig; function widgets_install() { - Addon::registerHook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); - Addon::registerHook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); + Addon::registerHook('addon_settings', 'addon/widgets/widgets.php', 'widgets_settings'); + Addon::registerHook('addon_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); logger("installed widgets"); } function widgets_uninstall() { - Addon::unregisterHook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); - Addon::unregisterHook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); + Addon::unregisterHook('addon_settings', 'addon/widgets/widgets.php', 'widgets_settings'); + Addon::unregisterHook('addon_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); } @@ -55,12 +56,12 @@ function widgets_settings(&$a,&$o) { # $t = file_get_contents( dirname(__file__). "/settings.tpl" ); $t = get_markup_template("settings.tpl", "addon/widgets/"); $o .= replace_macros($t, [ - '$submit' => t('Generate new key'), + '$submit' => L10n::t('Generate new key'), '$baseurl' => $a->get_baseurl(), '$title' => "Widgets", - '$label' => t('Widgets key'), + '$label' => L10n::t('Widgets key'), '$key' => $key, - '$widgets_h' => t('Widgets available'), + '$widgets_h' => L10n::t('Widgets available'), '$widgets' => $widgets, ]); @@ -122,7 +123,7 @@ function widgets_content(&$a) { if (isset($_GET['p']) && local_user()==$conf['uid'] ) { $o .= ""; $o .= "

Preview Widget

"; - $o .= ''. t("Plugin Settings") .''; + $o .= ''. L10n::t("Addon Settings") .''; $o .= "

".call_user_func($a->argv[1].'_widget_name')."

"; $o .= call_user_func($a->argv[1].'_widget_help'); @@ -167,14 +168,8 @@ function widgets_content(&$a) { return $o; } - } echo $o; killme(); } - - - - -?>