X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Ftheme.php;h=22afbc9a7cf63394680a9d2f4baaf53ae52e113c;hb=d6ed0068e6c8bf513e40a5d29b73d100f664261b;hp=14f93f6b7e401157aec3b47322da180e76987f52;hpb=c58dc357d4fb97fc7d22e5c2db03a4f22719185c;p=friendica.git diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index 14f93f6b7e..22afbc9a7c 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -10,9 +10,7 @@ use Friendica\App; use Friendica\Content\Text\Plaintext; use Friendica\Content\Widget; -use Friendica\Core\Config; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\Renderer; use Friendica\Core\Session; @@ -42,14 +40,6 @@ function frio_init(App $a) EOT; } - - $enable_compose = DI::pConfig()->get(local_user(), 'frio', 'enable_compose'); - $compose = $enable_compose === '1' || $enable_compose === null && Config::get('frio', 'enable_compose') ? 1 : 0; - DI::page()['htmlhead'] .= <<< HTML - -HTML; } function frio_install() @@ -77,7 +67,7 @@ function frio_uninstall() } /** - * @brief Replace friendica photo links hook + * Replace friendica photo links hook * * This function does replace the links to photos * of other friendica users. Original the photos are @@ -115,7 +105,7 @@ function frio_item_photo_links(App $a, &$body_info) } /** - * @brief Replace links of the item_photo_menu hook + * Replace links of the item_photo_menu hook * * This function replaces the original poke and the message links * to call the addToModal javascript function so this pages can @@ -135,7 +125,7 @@ function frio_item_photo_menu(App $a, &$arr) } /** - * @brief Replace links of the contact_photo_menu + * Replace links of the contact_photo_menu * * This function replaces the original poke and the message links * to call the addToModal javascript function so this pages can @@ -191,7 +181,7 @@ function frio_contact_photo_menu(App $a, &$args) } /** - * @brief Construct remote nav menu + * Construct remote nav menu * * It creates a remote baseurl form $_SESSION for remote users and friendica * visitors. This url will be added to some of the nav links. With this behaviour @@ -244,12 +234,12 @@ function frio_remote_nav($a, &$nav) $r[0]['name'] = $a->user['username']; } elseif (!local_user() && remote_user()) { $r = q("SELECT `name`, `nick`, `micro` AS `photo` FROM `contact` WHERE `id` = %d", intval(remote_user())); - $nav['remote'] = L10n::t('Guest'); + $nav['remote'] = DI::l10n()->t('Guest'); } elseif (Model\Profile::getMyURL()) { $r = q("SELECT `name`, `nick`, `photo` FROM `gcontact` WHERE `addr` = '%s' AND `network` = 'dfrn'", DBA::escape($webbie)); - $nav['remote'] = L10n::t('Visitor'); + $nav['remote'] = DI::l10n()->t('Visitor'); } else { $r = false; } @@ -265,24 +255,24 @@ function frio_remote_nav($a, &$nav) if (!local_user() && !empty($server_url) && !is_null($remoteUser)) { // user menu - $nav['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'], L10n::t('Status'), '', L10n::t('Your posts and conversations')]; - $nav['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')]; - $nav['usermenu'][] = [$server_url . '/photos/' . $remoteUser['nick'], L10n::t('Photos'), '', L10n::t('Your photos')]; - $nav['usermenu'][] = [$server_url . '/videos/' . $remoteUser['nick'], L10n::t('Videos'), '', L10n::t('Your videos')]; - $nav['usermenu'][] = [$server_url . '/events/', L10n::t('Events'), '', L10n::t('Your events')]; + $nav['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'], DI::l10n()->t('Status'), '', DI::l10n()->t('Your posts and conversations')]; + $nav['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'] . '/profile', DI::l10n()->t('Profile'), '', DI::l10n()->t('Your profile page')]; + $nav['usermenu'][] = [$server_url . '/photos/' . $remoteUser['nick'], DI::l10n()->t('Photos'), '', DI::l10n()->t('Your photos')]; + $nav['usermenu'][] = [$server_url . '/videos/' . $remoteUser['nick'], DI::l10n()->t('Videos'), '', DI::l10n()->t('Your videos')]; + $nav['usermenu'][] = [$server_url . '/events/', DI::l10n()->t('Events'), '', DI::l10n()->t('Your events')]; // navbar links - $nav['network'] = [$server_url . '/network', L10n::t('Network'), '', L10n::t('Conversations from your friends')]; - $nav['events'] = [$server_url . '/events', L10n::t('Events'), '', L10n::t('Events and Calendar')]; - $nav['messages'] = [$server_url . '/message', L10n::t('Messages'), '', L10n::t('Private mail')]; - $nav['settings'] = [$server_url . '/settings', L10n::t('Settings'), '', L10n::t('Account settings')]; - $nav['contacts'] = [$server_url . '/contact', L10n::t('Contacts'), '', L10n::t('Manage/edit friends and contacts')]; - $nav['sitename'] = Config::get('config', 'sitename'); + $nav['network'] = [$server_url . '/network', DI::l10n()->t('Network'), '', DI::l10n()->t('Conversations from your friends')]; + $nav['events'] = [$server_url . '/events', DI::l10n()->t('Events'), '', DI::l10n()->t('Events and Calendar')]; + $nav['messages'] = [$server_url . '/message', DI::l10n()->t('Messages'), '', DI::l10n()->t('Private mail')]; + $nav['settings'] = [$server_url . '/settings', DI::l10n()->t('Settings'), '', DI::l10n()->t('Account settings')]; + $nav['contacts'] = [$server_url . '/contact', DI::l10n()->t('Contacts'), '', DI::l10n()->t('Manage/edit friends and contacts')]; + $nav['sitename'] = DI::config()->get('config', 'sitename'); } } /** - * @brief: Search for contacts + * Search for contacts * * This function search for a users contacts. The code is copied from contact search * in /src/Module/Contact.php. With this function the contacts will permitted to acl_lookup() @@ -340,7 +330,7 @@ function frio_acl_lookup(App $a, &$results) } /** - * @brief Manipulate the data of the item + * Manipulate the data of the item * * At the moment we use this function to add some own stuff to the item menu * @@ -361,10 +351,58 @@ function frio_display_item(App $a, &$arr) { $subthread = [ 'menu' => 'follow_thread', - 'title' => L10n::t('Follow Thread'), - 'action' => 'dosubthread(' . $arr['item']['id'] . '); return false;', + 'title' => DI::l10n()->t('Follow Thread'), + 'action' => 'dosubthread(' . $arr['item']['id'] . ');', 'href' => '#' ]; } $arr['output']['subthread'] = $subthread; } + +/** + * @param int|null $uid + * @return string + * @see \Friendica\Core\Theme::getBackgroundColor() + */ +function frio_get_background_color(int $uid = null) +{ + $background_color = DI::config()->get('frio', 'background_color') ?: '#ededed'; + + if ($uid) { + $background_color = DI::pConfig()->get($uid, 'frio', 'background_color') ?: $background_color; + } + + $scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')); + $scheme = Strings::sanitizeFilePathItem($scheme); + + if ($scheme && ($scheme != '---') && file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { + $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; + require_once $schemefile; + } + + return $background_color; +} + +/** + * @param int|null $uid + * @return string + * @see \Friendica\Core\Theme::getThemeColor() + */ +function frio_get_theme_color(int $uid = null) +{ + $nav_bg = DI::config()->get('frio', 'nav_bg') ?: '#708fa0'; + + if ($uid) { + $nav_bg = DI::pConfig()->get($uid, 'frio', 'background_color') ?: $nav_bg; + } + + $scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')); + $scheme = Strings::sanitizeFilePathItem($scheme); + + if ($scheme && ($scheme != '---') && file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { + $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; + require_once $schemefile; + } + + return $nav_bg; +}