X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Ftheme.php;h=0202fda0efb2ed6fd56c9632e1927c1dd32989b4;hb=0acb5d4558d3641c47f01a056751c4410b7c4953;hp=5fe0152748ec59dd22b24c1d720a18a05838e0f4;hpb=3c76826793feeb933dab7a07dab7cc7eb2efc451;p=friendica.git diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index 5fe0152748..0202fda0ef 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; @@ -36,20 +34,12 @@ function frio_init(App $a) // if the device is a mobile device set js is_mobile // variable so the js scripts can use this information if (DI::mode()->isMobile() || DI::mode()->isMobile()) { - $a->page['htmlhead'] .= <<< EOT + DI::page()['htmlhead'] .= <<< EOT EOT; } - - $enable_compose = \Friendica\Core\PConfig::get(local_user(), 'frio', 'enable_compose'); - $compose = $enable_compose === '1' || $enable_compose === null && Config::get('frio', 'enable_compose') ? 1 : 0; - $a->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 @@ -127,7 +117,7 @@ function frio_item_photo_links(App $a, &$body_info) function frio_item_photo_menu(App $a, &$arr) { foreach ($arr['menu'] as $k => $v) { - if (strpos($v, 'poke/?f=&c=') === 0 || strpos($v, 'message/new/') === 0) { + if (strpos($v, '/poke') === 0 || strpos($v, 'message/new/') === 0) { $v = 'javascript:addToModal(\'' . $v . '\'); return false;'; $arr['menu'][$k] = $v; } @@ -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 @@ -181,7 +171,7 @@ function frio_contact_photo_menu(App $a, &$args) // Add to pm and poke links a new key with the value 'modal'. // Later we can make conditions in the corresponing templates (e.g. // contact_template.tpl) - if (strpos($pokelink, 'poke/?f=&c=' . $cid) !== false) { + if (strpos($pokelink, $cid . '/poke') !== false) { $args['menu']['poke'][3] = 'modal'; } @@ -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 * @@ -356,15 +346,63 @@ function frio_display_item(App $a, &$arr) if ( local_user() && local_user() == $arr['item']['uid'] - && $arr['item']['parent'] == $arr['item']['id'] + && $arr['item']['gravity'] == GRAVITY_PARENT && !$arr['item']['self']) { $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; +}