Replace DI::app() with DI::appHelper()

This commit is contained in:
Art4 2024-12-11 21:47:10 +00:00
parent 5f7482d081
commit 84659fc1ad
19 changed files with 21 additions and 21 deletions

View file

@ -271,7 +271,7 @@ function advancedcontentfilter_content()
'rule_expression' => DI::l10n()->t('Rule Expression'), 'rule_expression' => DI::l10n()->t('Rule Expression'),
'cancel' => DI::l10n()->t('Cancel'), 'cancel' => DI::l10n()->t('Cancel'),
], ],
'$current_theme' => DI::app()->getCurrentTheme(), '$current_theme' => DI::appHelper()->getCurrentTheme(),
'$rules' => DBA::toArray(DBA::select('advancedcontentfilter_rules', [], ['uid' => DI::userSession()->getLocalUserId()])), '$rules' => DBA::toArray(DBA::select('advancedcontentfilter_rules', [], ['uid' => DI::userSession()->getLocalUserId()])),
'$form_security_token' => BaseModule::getFormSecurityToken() '$form_security_token' => BaseModule::getFormSecurityToken()
]); ]);

View file

@ -98,7 +98,7 @@ function bluesky_install()
function bluesky_load_config(ConfigFileManager $loader) function bluesky_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('bluesky'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('bluesky'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function bluesky_check_item_notification(array &$notification_data) function bluesky_check_item_notification(array &$notification_data)

View file

@ -39,7 +39,7 @@ function fancybox_render(array &$b){
function ($text) use ($gallery) { function ($text) use ($gallery) {
// This processes images inlined in posts // This processes images inlined in posts
// Frio / Vier hooks für lightbox are un-hooked in fancybox-config.js. So this works for them, too! // Frio / Vier hooks für lightbox are un-hooked in fancybox-config.js. So this works for them, too!
//if (!in_array(DI::app()->getCurrentTheme(),['vier','frio'])) //if (!in_array(DI::appHelper()->getCurrentTheme(),['vier','frio']))
$text = preg_replace( $text = preg_replace(
'#<a[^>]*href="([^"]*)"[^>]*>(<img[^>]*src="[^"]*"[^>]*>)</a>#', '#<a[^>]*href="([^"]*)"[^>]*>(<img[^>]*src="[^"]*"[^>]*>)</a>#',
'<a data-fancybox="' . $gallery . '" href="$1">$2</a>', '<a data-fancybox="' . $gallery . '" href="$1">$2</a>',

View file

@ -34,7 +34,7 @@ function geonames_install()
function geonames_load_config(ConfigFileManager $loader) function geonames_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('geonames'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('geonames'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function geonames_post_hook(array &$item) function geonames_post_hook(array &$item)

View file

@ -25,7 +25,7 @@ function gravatar_install() {
function gravatar_load_config(ConfigFileManager $loader) function gravatar_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('gravatar'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('gravatar'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
/** /**

View file

@ -17,7 +17,7 @@ function highlightjs_install()
function highlightjs_head(string &$str) function highlightjs_head(string &$str)
{ {
if (DI::app()->getCurrentTheme() == 'frio') { if (DI::appHelper()->getCurrentTheme() == 'frio') {
$style = 'bootstrap'; $style = 'bootstrap';
} else { } else {
$style = 'default'; $style = 'default';

View file

@ -55,7 +55,7 @@ function impressum_footer(string &$body)
function impressum_load_config(ConfigFileManager $loader) function impressum_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('impressum'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('impressum'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function impressum_show(string &$body) function impressum_show(string &$body)

View file

@ -44,7 +44,7 @@ function ldapauth_install()
function ldapauth_load_config(ConfigFileManager $loader) function ldapauth_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('ldapauth'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('ldapauth'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function ldapauth_hook_authenticate(array &$b) function ldapauth_hook_authenticate(array &$b)

View file

@ -25,7 +25,7 @@ function libravatar_install()
function libravatar_load_config(ConfigFileManager $loader) function libravatar_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('libravatar'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('libravatar'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
/** /**

View file

@ -36,7 +36,7 @@ function openstreetmap_install()
function openstreetmap_load_config(ConfigFileManager $loader) function openstreetmap_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('openstreetmap'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('openstreetmap'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function openstreetmap_alterheader(&$navHtml) function openstreetmap_alterheader(&$navHtml)

View file

@ -24,7 +24,7 @@ function phpmailer_install()
function phpmailer_load_config(ConfigFileManager $loader) function phpmailer_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('phpmailer'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('phpmailer'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
/** /**

View file

@ -50,7 +50,7 @@ function piwik_install() {
function piwik_load_config(ConfigFileManager $loader) function piwik_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('piwik'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('piwik'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function piwik_analytics(string &$b) function piwik_analytics(string &$b)

View file

@ -90,7 +90,7 @@ function pnut_connect()
function pnut_load_config(ConfigFileManager $loader) function pnut_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('pnut'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('pnut'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function pnut_addon_admin(string &$o) function pnut_addon_admin(string &$o)

View file

@ -28,7 +28,7 @@ function public_server_install()
function public_server_load_config(ConfigFileManager $loader) function public_server_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('public_server'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('public_server'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function public_server_register_account($b) function public_server_register_account($b)

View file

@ -319,7 +319,7 @@ function pumpio_settings_post(array &$b)
function pumpio_load_config(ConfigFileManager $loader) function pumpio_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('pumpio'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('pumpio'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function pumpio_hook_fork(array &$b) function pumpio_hook_fork(array &$b)

View file

@ -19,7 +19,7 @@ function smileybutton_install()
function smileybutton_jot_tool(string &$body) function smileybutton_jot_tool(string &$body)
{ {
// Disable if theme is quattro // Disable if theme is quattro
if (DI::app()->getCurrentTheme() == 'quattro') { if (DI::appHelper()->getCurrentTheme() == 'quattro') {
return; return;
} }
@ -96,7 +96,7 @@ function smileybutton_jot_tool(string &$body)
$s .= '</tr></table>'; $s .= '</tr></table>';
//Add css to header //Add css to header
$css_file = __DIR__ . '/view/' . DI::app()->getCurrentTheme() . '.css'; $css_file = __DIR__ . '/view/' . DI::appHelper()->getCurrentTheme() . '.css';
if (!file_exists($css_file)) { if (!file_exists($css_file)) {
$css_file = __DIR__ . '/view/default.css'; $css_file = __DIR__ . '/view/default.css';
} }
@ -104,7 +104,7 @@ function smileybutton_jot_tool(string &$body)
DI::page()->registerStylesheet($css_file); DI::page()->registerStylesheet($css_file);
//Get the correct image for the theme //Get the correct image for the theme
$image = 'addon/smileybutton/view/' . DI::app()->getCurrentTheme() . '.png'; $image = 'addon/smileybutton/view/' . DI::appHelper()->getCurrentTheme() . '.png';
if (!file_exists($image)) { if (!file_exists($image)) {
$image = 'addon/smileybutton/view/default.png'; $image = 'addon/smileybutton/view/default.png';
} }

View file

@ -26,7 +26,7 @@ function testdrive_install()
function testdrive_load_config(ConfigFileManager $loader) function testdrive_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('testdrive'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('testdrive'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function testdrive_globaldir_update(array &$b) function testdrive_globaldir_update(array &$b)

View file

@ -65,7 +65,7 @@ function tumblr_install()
function tumblr_load_config(ConfigFileManager $loader) function tumblr_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('tumblr'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('tumblr'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function tumblr_check_item_notification(array &$notification_data) function tumblr_check_item_notification(array &$notification_data)

View file

@ -67,7 +67,7 @@ function twitter_install()
function twitter_load_config(ConfigFileManager $loader) function twitter_load_config(ConfigFileManager $loader)
{ {
DI::app()->getConfigCache()->load($loader->loadAddonConfig('twitter'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC); DI::appHelper()->getConfigCache()->load($loader->loadAddonConfig('twitter'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
} }
function twitter_jot_nets(array &$jotnets_fields) function twitter_jot_nets(array &$jotnets_fields)