mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
Move Config::get() to DI::config()->get()
This commit is contained in:
parent
c67ad31c8b
commit
1ce63185ab
38 changed files with 342 additions and 342 deletions
|
@ -116,10 +116,10 @@ function curweather_network_mod_init(App $a, &$b)
|
|||
$rpt = DI::pConfig()->get(local_user(), 'curweather', 'curweather_loc');
|
||||
|
||||
// Set the language to the browsers language or default and use metric units
|
||||
$lang = Session::get('language', Config::get('system', 'language'));
|
||||
$lang = Session::get('language', DI::config()->get('system', 'language'));
|
||||
$units = DI::pConfig()->get( local_user(), 'curweather', 'curweather_units');
|
||||
$appid = Config::get('curweather', 'appid');
|
||||
$cachetime = intval(Config::get('curweather', 'cachetime'));
|
||||
$appid = DI::config()->get('curweather', 'appid');
|
||||
$cachetime = intval(DI::config()->get('curweather', 'cachetime'));
|
||||
|
||||
if ($units === "") {
|
||||
$units = 'metric';
|
||||
|
@ -184,7 +184,7 @@ function curweather_addon_settings(App $a, &$s)
|
|||
/* Get the current state of our config variable */
|
||||
$curweather_loc = DI::pConfig()->get(local_user(), 'curweather', 'curweather_loc');
|
||||
$curweather_units = DI::pConfig()->get(local_user(), 'curweather', 'curweather_units');
|
||||
$appid = Config::get('curweather', 'appid');
|
||||
$appid = DI::config()->get('curweather', 'appid');
|
||||
|
||||
if ($appid == "") {
|
||||
$noappidtext = DI::l10n()->t('No APPID found, please contact your admin to obtain one.');
|
||||
|
@ -233,8 +233,8 @@ function curweather_addon_admin(App $a, &$o)
|
|||
return;
|
||||
}
|
||||
|
||||
$appid = Config::get('curweather', 'appid');
|
||||
$cachetime = Config::get('curweather', 'cachetime');
|
||||
$appid = DI::config()->get('curweather', 'appid');
|
||||
$cachetime = DI::config()->get('curweather', 'cachetime');
|
||||
|
||||
$t = Renderer::getMarkupTemplate("admin.tpl", "addon/curweather/" );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue