X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Ftheme.php;h=22afbc9a7cf63394680a9d2f4baaf53ae52e113c;hb=d6ed0068e6c8bf513e40a5d29b73d100f664261b;hp=9bae9053af09e7a7e8ba65433beedcafb3b65995;hpb=f018c23bd0bc953c42fc7c3978416a9637eb4ca8;p=friendica.git diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index 9bae9053af..22afbc9a7c 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -10,14 +10,12 @@ use Friendica\App; use Friendica\Content\Text\Plaintext; use Friendica\Content\Widget; -use Friendica\Core\Addon; -use Friendica\Core\Config; -use Friendica\Core\L10n; +use Friendica\Core\Hook; use Friendica\Core\Logger; -use Friendica\Core\PConfig; use Friendica\Core\Renderer; -use Friendica\Core\System; +use Friendica\Core\Session; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model; use Friendica\Module; use Friendica\Util\Strings; @@ -35,8 +33,8 @@ 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 ($a->is_mobile || $a->is_tablet) { - $a->page['htmlhead'] .= <<< EOT + if (DI::mode()->isMobile() || DI::mode()->isMobile()) { + DI::page()['htmlhead'] .= <<< EOT @@ -46,30 +44,30 @@ EOT; function frio_install() { - Addon::registerHook('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links'); - Addon::registerHook('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu'); - Addon::registerHook('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu'); - Addon::registerHook('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav'); - Addon::registerHook('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup'); - Addon::registerHook('display_item', 'view/theme/frio/theme.php', 'frio_display_item'); + Hook::register('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links'); + Hook::register('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu'); + Hook::register('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu'); + Hook::register('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav'); + Hook::register('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup'); + Hook::register('display_item', 'view/theme/frio/theme.php', 'frio_display_item'); Logger::log('installed theme frio'); } function frio_uninstall() { - Addon::unregisterHook('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links'); - Addon::unregisterHook('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu'); - Addon::unregisterHook('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu'); - Addon::unregisterHook('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav'); - Addon::unregisterHook('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup'); - Addon::unregisterHook('display_item', 'view/theme/frio/theme.php', 'frio_display_item'); + Hook::unregister('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links'); + Hook::unregister('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu'); + Hook::unregister('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu'); + Hook::unregister('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav'); + Hook::unregister('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup'); + Hook::unregister('display_item', 'view/theme/frio/theme.php', 'frio_display_item'); Logger::log('uninstalled theme frio'); } /** - * @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 @@ -107,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 @@ -119,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?c=') === 0 || strpos($v, 'message/new/') === 0) { $v = 'javascript:addToModal(\'' . $v . '\'); return false;'; $arr['menu'][$k] = $v; } @@ -127,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 @@ -173,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, 'poke?c=' . $cid) !== false) { $args['menu']['poke'][3] = 'modal'; } @@ -183,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 @@ -201,7 +199,7 @@ function frio_remote_nav($a, &$nav) // get the homelink from $_XSESSION $homelink = Model\Profile::getMyURL(); if (!$homelink) { - $homelink = defaults($_SESSION, 'visitor_home', ''); + $homelink = Session::get('visitor_home', ''); } // split up the url in it's parts (protocol,domain/directory, /profile/, nickname @@ -232,49 +230,49 @@ function frio_remote_nav($a, &$nav) // user info $r = q("SELECT `micro` FROM `contact` WHERE `uid` = %d AND `self`", intval($a->user['uid'])); - $r[0]['photo'] = (DBA::isResult($r) ? $a->removeBaseURL($r[0]['micro']) : 'images/person-48.jpg'); + $r[0]['photo'] = (DBA::isResult($r) ? DI::baseUrl()->remove($r[0]['micro']) : 'images/person-48.jpg'); $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; } + $remoteUser = null; if (DBA::isResult($r)) { $nav['userinfo'] = [ 'icon' => (DBA::isResult($r) ? $r[0]['photo'] : 'images/person-48.jpg'), 'name' => $r[0]['name'], ]; + $remoteUser = $r[0]; } - if (!local_user() && !empty($server_url)) { - $nav['logout'] = [$server_url . '/logout', L10n::t('Logout'), '', L10n::t('End this session')]; - + if (!local_user() && !empty($server_url) && !is_null($remoteUser)) { // user menu - $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'], L10n::t('Status'), '', L10n::t('Your posts and conversations')]; - $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')]; - $nav['usermenu'][] = [$server_url . '/photos/' . $a->user['nickname'], L10n::t('Photos'), '', L10n::t('Your photos')]; - $nav['usermenu'][] = [$server_url . '/videos/' . $a->user['nickname'], 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() @@ -332,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 * @@ -353,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; +}