2012-11-15 15:47:36 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Vier
|
2015-02-02 15:00:32 -05:00
|
|
|
* Version: 1.2
|
2012-11-15 15:47:36 -05:00
|
|
|
* Author: Fabio <http://kirgroup.com/profile/fabrixxm>
|
|
|
|
* Author: Ike <http://pirati.ca/profile/heluecht>
|
2015-02-02 15:03:14 -05:00
|
|
|
* Author: Beanow <https://fc.oscp.info/profile/beanow>
|
2012-11-15 15:47:36 -05:00
|
|
|
* Maintainer: Ike <http://pirati.ca/profile/heluecht>
|
2014-06-19 18:01:20 -04:00
|
|
|
* Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/
|
2012-11-15 15:47:36 -05:00
|
|
|
*/
|
2012-12-15 05:25:52 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-11-21 07:20:22 -05:00
|
|
|
use Friendica\Content\ForumManager;
|
2018-01-17 13:42:40 -05:00
|
|
|
use Friendica\Core\Addon;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2020-01-04 17:59:20 -05:00
|
|
|
use Friendica\Core\Search;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 18:36:31 -05:00
|
|
|
use Friendica\DI;
|
2018-06-02 04:05:06 -04:00
|
|
|
use Friendica\Model\Contact;
|
2018-11-08 11:28:29 -05:00
|
|
|
use Friendica\Util\Strings;
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
function vier_init(App $a)
|
|
|
|
{
|
2015-10-01 02:19:35 -04:00
|
|
|
$a->theme_events_in_profile = false;
|
2015-09-30 12:50:44 -04:00
|
|
|
|
2018-10-31 13:25:38 -04:00
|
|
|
Renderer::setActiveTemplateEngine('smarty3');
|
2012-12-22 14:57:29 -05:00
|
|
|
|
2020-07-09 15:08:09 -04:00
|
|
|
if (!empty($a->argv[0]) && ($a->argv[0] . ($a->argv[1] ?? '')) === ('profile' . ($a->user['nickname'] ?? '')) || $a->argv[0] === 'network' && local_user()) {
|
2018-07-19 20:52:18 -04:00
|
|
|
vier_community_info();
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= "<link rel='stylesheet' type='text/css' href='view/theme/vier/wide.css' media='screen and (min-width: 1300px)'/>\n";
|
2015-10-01 02:19:35 -04:00
|
|
|
}
|
2012-12-15 05:25:52 -05:00
|
|
|
|
2019-12-15 19:12:07 -05:00
|
|
|
if (DI::mode()->isMobile() || DI::mode()->isMobile()) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= '<meta name=viewport content="width=device-width, initial-scale=1">'."\n";
|
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen"/>'."\n";
|
2015-11-03 17:11:36 -05:00
|
|
|
}
|
2017-01-07 09:49:13 -05:00
|
|
|
/// @todo deactivated since it doesn't work with desktop browsers at the moment
|
2019-12-30 14:02:09 -05:00
|
|
|
//DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen and (max-width: 1000px)"/>'."\n";
|
2015-11-02 17:12:09 -05:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2015-11-03 17:11:36 -05:00
|
|
|
<link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
|
2014-09-11 17:38:24 -04:00
|
|
|
<script type="text/javascript">
|
2012-12-15 05:25:52 -05:00
|
|
|
function showThread(id) {
|
|
|
|
$("#collapsed-comments-" + id).show()
|
|
|
|
$("#collapsed-comments-" + id + " .collapsed-comments").show()
|
|
|
|
}
|
|
|
|
function hideThread(id) {
|
|
|
|
$("#collapsed-comments-" + id).hide()
|
|
|
|
$("#collapsed-comments-" + id + " .collapsed-comments").hide()
|
|
|
|
}
|
|
|
|
|
|
|
|
function cmtBbOpen(id) {
|
|
|
|
$("#comment-edit-bb-" + id).show();
|
|
|
|
}
|
|
|
|
function cmtBbClose(id) {
|
|
|
|
$("#comment-edit-bb-" + id).hide();
|
|
|
|
}
|
2015-11-12 03:30:54 -05:00
|
|
|
</script>
|
|
|
|
EOT;
|
|
|
|
|
2019-12-15 19:12:07 -05:00
|
|
|
if (DI::mode()->isMobile() || DI::mode()->isMobile()) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= <<< EOT
|
2015-11-12 03:30:54 -05:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$(".mobile-aside-toggle a").click(function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
$("aside").toggleClass("show");
|
|
|
|
});
|
|
|
|
$(".tabs").click(function(e){
|
|
|
|
$(this).toggleClass("show");
|
|
|
|
});
|
|
|
|
});
|
2012-12-15 05:25:52 -05:00
|
|
|
</script>
|
|
|
|
EOT;
|
2017-01-07 09:49:13 -05:00
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
|
|
|
|
// Hide the left menu bar
|
2017-03-31 15:04:08 -04:00
|
|
|
/// @TODO maybe move this static array out where it should belong?
|
2019-12-30 14:02:09 -05:00
|
|
|
if (empty(DI::page()['aside']) && in_array($a->argv[0], ["community", "events", "help", "delegation", "notifications",
|
2018-01-15 08:05:12 -05:00
|
|
|
"probe", "webfinger", "login", "invite", "credits"])) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['htmlhead'] .= "<link rel='stylesheet' href='view/theme/vier/hide.css' />";
|
2017-01-07 09:49:13 -05:00
|
|
|
}
|
2012-12-15 05:25:52 -05:00
|
|
|
}
|
2012-12-22 14:57:29 -05:00
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
function get_vier_config($key, $default = false, $admin = false)
|
|
|
|
{
|
2017-06-07 22:00:59 -04:00
|
|
|
if (local_user() && !$admin) {
|
2020-01-18 10:50:57 -05:00
|
|
|
$result = DI::pConfig()->get(local_user(), "vier", $key);
|
2017-12-06 14:57:06 -05:00
|
|
|
if (!is_null($result)) {
|
2015-10-01 02:19:35 -04:00
|
|
|
return $result;
|
2017-03-31 15:04:08 -04:00
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
$result = DI::config()->get("vier", $key);
|
2017-12-06 14:57:06 -05:00
|
|
|
if (!is_null($result)) {
|
2015-10-01 02:19:35 -04:00
|
|
|
return $result;
|
2017-03-31 15:04:08 -04:00
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
|
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
function vier_community_info()
|
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2015-10-03 06:55:55 -04:00
|
|
|
|
|
|
|
$show_pages = get_vier_config("show_pages", 1);
|
|
|
|
$show_profiles = get_vier_config("show_profiles", 1);
|
|
|
|
$show_helpers = get_vier_config("show_helpers", 1);
|
|
|
|
$show_services = get_vier_config("show_services", 1);
|
|
|
|
$show_friends = get_vier_config("show_friends", 1);
|
|
|
|
$show_lastusers = get_vier_config("show_lastusers", 1);
|
|
|
|
|
2017-03-31 15:04:08 -04:00
|
|
|
// get_baseurl
|
2019-12-30 17:00:08 -05:00
|
|
|
$url = DI::baseUrl();
|
2015-10-03 06:55:55 -04:00
|
|
|
$aside['$url'] = $url;
|
2015-10-01 02:19:35 -04:00
|
|
|
|
|
|
|
// comunity_profiles
|
2017-01-07 09:49:13 -05:00
|
|
|
if ($show_profiles) {
|
2020-08-04 00:47:02 -04:00
|
|
|
$contacts = Contact\Relation::getSuggestions(local_user(), 0, 9);
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('ch_directory_item.tpl');
|
2020-07-30 10:08:32 -04:00
|
|
|
if (DBA::isResult($contacts)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$aside['$comunity_profiles_title'] = DI::l10n()->t('Community Profiles');
|
2018-01-15 08:05:12 -05:00
|
|
|
$aside['$comunity_profiles_items'] = [];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2020-07-30 10:08:32 -04:00
|
|
|
foreach ($contacts as $contact) {
|
2018-10-31 10:35:50 -04:00
|
|
|
$entry = Renderer::replaceMacros($tpl, [
|
2020-07-30 10:08:32 -04:00
|
|
|
'$id' => $contact['id'],
|
|
|
|
'$profile_link' => 'follow/?url='.urlencode($contact['url']),
|
|
|
|
'$photo' => Contact::getMicro($contact),
|
|
|
|
'$alt_text' => $contact['name'],
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-10-01 02:19:35 -04:00
|
|
|
$aside['$comunity_profiles_items'][] = $entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-03 06:55:55 -04:00
|
|
|
// last 9 users
|
2017-01-07 09:49:13 -05:00
|
|
|
if ($show_lastusers) {
|
2020-04-24 16:39:14 -04:00
|
|
|
$condition = ['blocked' => false];
|
|
|
|
if (!DI::config()->get('system', 'publish_all')) {
|
|
|
|
$condition['publish'] = true;
|
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('ch_directory_item.tpl');
|
2016-05-01 08:24:44 -04:00
|
|
|
|
2020-04-24 16:39:14 -04:00
|
|
|
$profiles = DBA::selectToArray('owner-view', [], $condition, ['order' => ['register_date' => true], 'limit' => [0, 9]]);
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2020-04-24 16:39:14 -04:00
|
|
|
if (DBA::isResult($profiles)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$aside['$lastusers_title'] = DI::l10n()->t('Last users');
|
2018-01-15 08:05:12 -05:00
|
|
|
$aside['$lastusers_items'] = [];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2020-04-24 16:39:14 -04:00
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
$profile_link = 'profile/' . ((strlen($profile['nickname'])) ? $profile['nickname'] : $profile['uid']);
|
2018-10-31 10:35:50 -04:00
|
|
|
$entry = Renderer::replaceMacros($tpl, [
|
2020-04-24 16:39:14 -04:00
|
|
|
'$id' => $profile['id'],
|
2015-10-01 02:19:35 -04:00
|
|
|
'$profile_link' => $profile_link,
|
2020-04-24 16:39:14 -04:00
|
|
|
'$photo' => DI::baseUrl()->remove($profile['thumb']),
|
|
|
|
'$alt_text' => $profile['name']]);
|
2015-10-01 02:19:35 -04:00
|
|
|
$aside['$lastusers_items'][] = $entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//right_aside FIND FRIENDS
|
2017-06-07 22:00:59 -04:00
|
|
|
if ($show_friends && local_user()) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$nv = [];
|
2020-01-18 14:52:34 -05:00
|
|
|
$nv['findpeople'] = DI::l10n()->t('Find People');
|
|
|
|
$nv['desc'] = DI::l10n()->t('Enter name or interest');
|
|
|
|
$nv['label'] = DI::l10n()->t('Connect/Follow');
|
|
|
|
$nv['hint'] = DI::l10n()->t('Examples: Robert Morgenstein, Fishing');
|
|
|
|
$nv['findthem'] = DI::l10n()->t('Find');
|
|
|
|
$nv['suggest'] = DI::l10n()->t('Friend Suggestions');
|
|
|
|
$nv['similar'] = DI::l10n()->t('Similar Interests');
|
|
|
|
$nv['random'] = DI::l10n()->t('Random Profile');
|
|
|
|
$nv['inv'] = DI::l10n()->t('Invite Friends');
|
|
|
|
$nv['directory'] = DI::l10n()->t('Global Directory');
|
2020-01-04 17:59:20 -05:00
|
|
|
$nv['global_dir'] = Search::getGlobalDirectory();
|
2020-01-18 14:52:34 -05:00
|
|
|
$nv['local_directory'] = DI::l10n()->t('Local Directory');
|
2015-10-01 02:19:35 -04:00
|
|
|
|
|
|
|
$aside['$nv'] = $nv;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Community_Pages at right_aside
|
2017-06-07 22:00:59 -04:00
|
|
|
if ($show_pages && local_user()) {
|
2019-10-16 08:43:59 -04:00
|
|
|
$cid = $_GET['cid'] ?? null;
|
2015-11-28 17:52:12 -05:00
|
|
|
|
2015-11-24 16:14:26 -05:00
|
|
|
//sort by last updated item
|
|
|
|
$lastitem = true;
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2017-11-21 07:20:22 -05:00
|
|
|
$contacts = ForumManager::getList($a->user['uid'], $lastitem, true, true);
|
2015-11-24 16:14:26 -05:00
|
|
|
$total = count($contacts);
|
|
|
|
$visible_forums = 10;
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2017-01-07 09:49:13 -05:00
|
|
|
if (count($contacts)) {
|
2015-11-24 16:14:26 -05:00
|
|
|
$id = 0;
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2017-03-30 15:36:34 -04:00
|
|
|
foreach ($contacts as $contact) {
|
2015-11-28 17:52:12 -05:00
|
|
|
$selected = (($cid == $contact['id']) ? ' forum-selected' : '');
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$entry = [
|
2020-05-17 11:01:27 -04:00
|
|
|
'url' => 'network?contactid=' . $contact['id'],
|
2018-06-02 04:05:06 -04:00
|
|
|
'external_url' => Contact::magicLink($contact['url']),
|
2017-03-30 15:36:34 -04:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'cid' => $contact['id'],
|
|
|
|
'selected' => $selected,
|
2020-07-28 15:30:55 -04:00
|
|
|
'micro' => Contact::getMicro($contact),
|
2017-03-30 15:36:34 -04:00
|
|
|
'id' => ++$id,
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2015-11-24 16:14:26 -05:00
|
|
|
$entries[] = $entry;
|
2015-10-03 06:55:55 -04:00
|
|
|
}
|
|
|
|
|
2015-11-24 16:14:26 -05:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget_forumlist_right.tpl');
|
2015-11-24 16:14:26 -05:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$page = Renderer::replaceMacros(
|
2017-11-21 07:20:22 -05:00
|
|
|
$tpl,
|
2018-01-15 08:05:12 -05:00
|
|
|
[
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Forums'),
|
2017-11-21 07:20:22 -05:00
|
|
|
'$forums' => $entries,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$link_desc' => DI::l10n()->t('External link to forum'),
|
2017-11-21 07:20:22 -05:00
|
|
|
'$total' => $total,
|
|
|
|
'$visible_forums' => $visible_forums,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$showmore' => DI::l10n()->t('show more')]
|
2017-11-21 07:20:22 -05:00
|
|
|
);
|
2015-11-24 16:14:26 -05:00
|
|
|
|
2015-10-01 02:19:35 -04:00
|
|
|
$aside['$page'] = $page;
|
2015-10-03 06:55:55 -04:00
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
}
|
2017-03-31 15:04:08 -04:00
|
|
|
// END Community Page
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2017-03-31 15:04:08 -04:00
|
|
|
// helpers
|
2017-01-07 09:49:13 -05:00
|
|
|
if ($show_helpers) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r = [];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
$helperlist = DI::config()->get("vier", "helperlist");
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
$helpers = explode(",", $helperlist);
|
2015-10-03 06:55:55 -04:00
|
|
|
|
|
|
|
if ($helpers) {
|
2020-08-02 03:54:18 -04:00
|
|
|
foreach ($helpers as $helper) {
|
|
|
|
$urls[] = Strings::normaliseLink(trim($helper));
|
2015-10-03 06:55:55 -04:00
|
|
|
}
|
2020-08-02 03:54:18 -04:00
|
|
|
$r = DBA::selectToArray('contact', ['url', 'name'], ['uid' => 0, 'nurl' => $urls]);
|
2015-10-03 06:55:55 -04:00
|
|
|
}
|
|
|
|
|
2018-01-22 07:29:50 -05:00
|
|
|
foreach ($r as $index => $helper) {
|
2018-06-02 04:05:06 -04:00
|
|
|
$r[$index]["url"] = Contact::magicLink($helper["url"]);
|
2018-01-22 07:29:50 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$r[] = ["url" => "help/Quick-Start-guide", "name" => DI::l10n()->t("Quick Start")];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('ch_helpers.tpl');
|
2015-10-03 06:55:55 -04:00
|
|
|
|
|
|
|
if ($r) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$helpers = [];
|
2020-01-18 14:52:34 -05:00
|
|
|
$helpers['title'] = ["", DI::l10n()->t('Help'), "", ""];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$aside['$helpers_items'] = [];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2016-12-20 15:16:01 -05:00
|
|
|
foreach ($r as $rr) {
|
2018-10-31 10:35:50 -04:00
|
|
|
$entry = Renderer::replaceMacros($tpl, [
|
2015-10-03 06:55:55 -04:00
|
|
|
'$url' => $rr['url'],
|
|
|
|
'$title' => $rr['name'],
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-10-03 06:55:55 -04:00
|
|
|
$aside['$helpers_items'][] = $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
$aside['$helpers'] = $helpers;
|
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
}
|
2017-03-31 15:04:08 -04:00
|
|
|
// end helpers
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2017-03-31 15:04:08 -04:00
|
|
|
// connectable services
|
2015-10-03 06:55:55 -04:00
|
|
|
if ($show_services) {
|
2016-12-20 15:16:01 -05:00
|
|
|
/// @TODO This whole thing is hard-coded, better rewrite to Intercepting Filter Pattern (future-todo)
|
2018-01-15 08:05:12 -05:00
|
|
|
$r = [];
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("buffer")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/buffer.png", "name" => "Buffer"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("blogger")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/blogger.png", "name" => "Blogger"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("dwpost")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/dreamwidth.png", "name" => "Dreamwidth"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("ifttt")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-11 17:36:23 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("statusnet")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/gnusocial.png", "name" => "GNU Social"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2017-03-31 15:04:08 -04:00
|
|
|
/// @TODO old-lost code (and below)?
|
2018-01-17 13:42:40 -05:00
|
|
|
//if (Addon::isEnabled("ijpost")) {
|
2015-10-03 06:55:55 -04:00
|
|
|
// $r[] = array("photo" => "images/", "name" => "");
|
2016-12-20 15:16:01 -05:00
|
|
|
//}
|
2015-10-01 02:19:35 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("libertree")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/libertree.png", "name" => "Libertree"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
//if (Addon::isEnabled("ljpost")) {
|
2015-10-03 06:55:55 -04:00
|
|
|
// $r[] = array("photo" => "images/", "name" => "");
|
2016-12-20 15:16:01 -05:00
|
|
|
//}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("pumpio")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/pumpio.png", "name" => "pump.io"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("tumblr")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/tumblr.png", "name" => "Tumblr"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("twitter")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/twitter.png", "name" => "Twitter"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (Addon::isEnabled("wppost")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/wordpress.png", "name" => "Wordpress"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
if (function_exists("imap_open") && !DI::config()->get("system", "imap_disabled") && !DI::config()->get("system", "dfrn_only")) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$r[] = ["photo" => "images/mail.png", "name" => "E-Mail"];
|
2016-12-20 15:16:01 -05:00
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('ch_connectors.tpl');
|
2015-10-03 06:55:55 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$con_services = [];
|
2020-01-18 14:52:34 -05:00
|
|
|
$con_services['title'] = ["", DI::l10n()->t('Connect Services'), "", ""];
|
2015-10-03 06:55:55 -04:00
|
|
|
$aside['$con_services'] = $con_services;
|
|
|
|
|
2016-12-20 15:16:01 -05:00
|
|
|
foreach ($r as $rr) {
|
2018-10-31 10:35:50 -04:00
|
|
|
$entry = Renderer::replaceMacros($tpl, [
|
2015-10-03 06:55:55 -04:00
|
|
|
'$url' => $url,
|
|
|
|
'$photo' => $rr['photo'],
|
|
|
|
'$alt_text' => $rr['name'],
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-10-03 06:55:55 -04:00
|
|
|
$aside['$connector_items'][] = $entry;
|
|
|
|
}
|
2015-10-01 02:19:35 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-03 06:55:55 -04:00
|
|
|
//end connectable services
|
2015-10-01 02:19:35 -04:00
|
|
|
|
|
|
|
//print right_aside
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('communityhome.tpl');
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['right_aside'] = Renderer::replaceMacros($tpl, $aside);
|
2015-10-01 02:19:35 -04:00
|
|
|
}
|
2020-02-19 10:28:57 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int|null $uid
|
|
|
|
* @return null
|
|
|
|
* @see \Friendica\Core\Theme::getBackgroundColor()
|
|
|
|
* @TODO Implement this function
|
|
|
|
*/
|
|
|
|
function vier_get_background_color(int $uid = null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int|null $uid
|
|
|
|
* @return null
|
|
|
|
* @see \Friendica\Core\Theme::getThemeColor()
|
|
|
|
* @TODO Implement this function
|
|
|
|
*/
|
|
|
|
function vier_get_theme_color(int $uid = null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|