]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
525bbe9d9918a7027c91b94609c1b2e53ebb6597
[friendica.git] / view / theme / vier / theme.php
1 <?php
2 /**
3  * Name: Vier
4  * Version: 1.2
5  * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
6  * Author: Ike <http://pirati.ca/profile/heluecht>
7  * Author: Beanow <https://fc.oscp.info/profile/beanow>
8  * Maintainer: Ike <http://pirati.ca/profile/heluecht>
9  * Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/
10  */
11
12 use Friendica\App;
13 use Friendica\Core\Config;
14 use Friendica\Core\PConfig;
15 use Friendica\Core\System;
16 use Friendica\Database\DBM;
17 use Friendica\Model\GlobalContact;
18
19 require_once "include/plugin.php";
20 require_once "include/socgraph.php";
21 require_once "mod/proxy.php";
22
23 function vier_init(App $a) {
24
25         $a->theme_events_in_profile = false;
26
27         $a->set_template_engine('smarty3');
28
29         if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] || $a->argv[0] === "network" && local_user()) {
30                 vier_community_info();
31
32                 $a->page['htmlhead'] .= "<link rel='stylesheet' type='text/css' href='view/theme/vier/wide.css' media='screen and (min-width: 1300px)'/>\n";
33         }
34
35         if ($a->is_mobile || $a->is_tablet) {
36                 $a->page['htmlhead'] .= '<meta name=viewport content="width=device-width, initial-scale=1">'."\n";
37                 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen"/>'."\n";
38         }
39         /// @todo deactivated since it doesn't work with desktop browsers at the moment
40         //$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen and (max-width: 1000px)"/>'."\n";
41
42         $a->page['htmlhead'] .= <<< EOT
43 <link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
44 <script type="text/javascript">
45
46 function insertFormatting(BBcode, id) {
47         var tmpStr = $("#comment-edit-text-" + id).val();
48         if (tmpStr == "") {
49                 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
50                 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
51                 openMenu("comment-edit-submit-wrapper-" + id);
52         }
53
54         textarea = document.getElementById("comment-edit-text-" +id);
55         if (document.selection) {
56                 textarea.focus();
57                 selected = document.selection.createRange();
58                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
59         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
60                 var start = textarea.selectionStart;
61                 var end = textarea.selectionEnd;
62                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
63         }
64
65         return true;
66 }
67
68 function showThread(id) {
69         $("#collapsed-comments-" + id).show()
70         $("#collapsed-comments-" + id + " .collapsed-comments").show()
71 }
72 function hideThread(id) {
73         $("#collapsed-comments-" + id).hide()
74         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
75 }
76
77 function cmtBbOpen(id) {
78         $("#comment-edit-bb-" + id).show();
79 }
80 function cmtBbClose(id) {
81         $("#comment-edit-bb-" + id).hide();
82 }
83 </script>
84 EOT;
85
86         if ($a->is_mobile || $a->is_tablet){
87                 $a->page['htmlhead'] .= <<< EOT
88 <script>
89         $(document).ready(function() {
90                 $(".mobile-aside-toggle a").click(function(e){
91                         e.preventDefault();
92                         $("aside").toggleClass("show");
93                 });
94                 $(".tabs").click(function(e){
95                         $(this).toggleClass("show");
96                 });
97         });
98 </script>
99 EOT;
100         }
101
102         // Hide the left menu bar
103         /// @TODO maybe move this static array out where it should belong?
104         if (($a->page['aside'] == "") && in_array($a->argv[0], array("community", "events", "help", "manage", "notifications",
105                         "probe", "webfinger", "login", "invite", "credits"))) {
106                 $a->page['htmlhead'] .= "<link rel='stylesheet' href='view/theme/vier/hide.css' />";
107         }
108 }
109
110 function get_vier_config($key, $default = false, $admin = false) {
111         if (local_user() && !$admin) {
112                 $result = PConfig::get(local_user(), "vier", $key);
113                 if ($result !== false) {
114                         return $result;
115                 }
116         }
117
118         $result = Config::get("vier", $key);
119         if ($result !== false) {
120                 return $result;
121         }
122
123         return $default;
124 }
125
126 function vier_community_info() {
127         $a = get_app();
128
129         $show_pages      = get_vier_config("show_pages", 1);
130         $show_profiles   = get_vier_config("show_profiles", 1);
131         $show_helpers    = get_vier_config("show_helpers", 1);
132         $show_services   = get_vier_config("show_services", 1);
133         $show_friends    = get_vier_config("show_friends", 1);
134         $show_lastusers  = get_vier_config("show_lastusers", 1);
135
136         // get_baseurl
137         $url = System::baseUrl($ssl_state);
138         $aside['$url'] = $url;
139
140         // comunity_profiles
141         if ($show_profiles) {
142                 $r = GlobalContact::suggestionQuery(local_user(), 0, 9);
143
144                 $tpl = get_markup_template('ch_directory_item.tpl');
145                 if (DBM::is_result($r)) {
146
147                         $aside['$comunity_profiles_title'] = t('Community Profiles');
148                         $aside['$comunity_profiles_items'] = array();
149
150                         foreach ($r as $rr) {
151                                 $entry = replace_macros($tpl,array(
152                                         '$id' => $rr['id'],
153                                         //'$profile_link' => zrl($rr['url']),
154                                         '$profile_link' => 'follow/?url='.urlencode($rr['url']),
155                                         '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_MICRO),
156                                         '$alt_text' => $rr['name'],
157                                 ));
158                                 $aside['$comunity_profiles_items'][] = $entry;
159                         }
160                 }
161         }
162
163         // last 9 users
164         if ($show_lastusers) {
165                 $publish = (Config::get('system', 'publish_all') ? '' : " AND `publish` = 1 ");
166                 $order = " ORDER BY `register_date` DESC ";
167
168                 $tpl = get_markup_template('ch_directory_item.tpl');
169
170                 $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
171                                 FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
172                                 WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $order LIMIT %d , %d ",
173                                 0, 9);
174
175                 if (DBM::is_result($r)) {
176
177                         $aside['$lastusers_title'] = t('Last users');
178                         $aside['$lastusers_items'] = array();
179
180                         foreach ($r as $rr) {
181                                 $profile_link = 'profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
182                                 $entry = replace_macros($tpl,array(
183                                         '$id' => $rr['id'],
184                                         '$profile_link' => $profile_link,
185                                         '$photo' => $a->remove_baseurl($rr['thumb']),
186                                         '$alt_text' => $rr['name']));
187                                 $aside['$lastusers_items'][] = $entry;
188                         }
189                 }
190         }
191
192         //right_aside FIND FRIENDS
193         if ($show_friends && local_user()) {
194                 $nv = array();
195                 $nv['title'] = array("", t('Find Friends'), "", "");
196                 $nv['directory'] = array('directory', t('Local Directory'), "", "");
197                 $nv['global_directory'] = Array(get_server(), t('Global Directory'), "", "");
198                 $nv['match'] = array('match', t('Similar Interests'), "", "");
199                 $nv['suggest'] = array('suggest', t('Friend Suggestions'), "", "");
200                 $nv['invite'] = array('invite', t('Invite Friends'), "", "");
201
202                 $nv['search'] = '<form name="simple_bar" method="get" action="dirfind">
203                                                 <span class="sbox_l"></span>
204                                                 <span class="sbox">
205                                                 <input type="text" name="search" size="13" maxlength="50">
206                                                 </span>
207                                                 <span class="sbox_r" id="srch_clear"></span>';
208
209                 $aside['$nv'] = $nv;
210         }
211
212         //Community_Pages at right_aside
213         if ($show_pages && local_user()) {
214
215                 require_once 'include/ForumManager.php';
216
217                 if (x($_GET, 'cid') && intval($_GET['cid']) != 0) {
218                         $cid = $_GET['cid'];
219                 }
220
221                 //sort by last updated item
222                 $lastitem = true;
223
224                 $contacts = ForumManager::get_list($a->user['uid'],true,$lastitem, true);
225                 $total = count($contacts);
226                 $visible_forums = 10;
227
228                 if (count($contacts)) {
229
230                         $id = 0;
231
232                         foreach ($contacts as $contact) {
233
234                                 $selected = (($cid == $contact['id']) ? ' forum-selected' : '');
235
236                                 $entry = array(
237                                         'url'          => 'network?f=&cid=' . $contact['id'],
238                                         'external_url' => 'redir/' . $contact['id'],
239                                         'name'         => $contact['name'],
240                                         'cid'          => $contact['id'],
241                                         'selected'     => $selected,
242                                         'micro'        => System::removedBaseUrl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
243                                         'id'           => ++$id,
244                                 );
245                                 $entries[] = $entry;
246                         }
247
248
249                         $tpl = get_markup_template('widget_forumlist_right.tpl');
250
251                         $page .= replace_macros($tpl, array(
252                                 '$title'          => t('Forums'),
253                                 '$forums'         => $entries,
254                                 '$link_desc'      => t('External link to forum'),
255                                 '$total'          => $total,
256                                 '$visible_forums' => $visible_forums,
257                                 '$showmore'       => t('show more'),
258                         ));
259
260                         $aside['$page'] = $page;
261                 }
262         }
263         // END Community Page
264
265         // helpers
266         if ($show_helpers) {
267                 $r = array();
268
269                 $helperlist = Config::get("vier", "helperlist");
270
271                 $helpers = explode(",",$helperlist);
272
273                 if ($helpers) {
274                         $query = "";
275                         foreach ($helpers AS $index=>$helper) {
276                                 if ($query != "")
277                                         $query .= ",";
278
279                                 $query .= "'".dbesc(normalise_link(trim($helper)))."'";
280                         }
281
282                         $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query);
283                 }
284
285                 foreach ($r AS $index => $helper)
286                         $r[$index]["url"] = zrl($helper["url"]);
287
288                 $r[] = array("url" => "help/Quick-Start-guide", "name" => t("Quick Start"));
289
290                 $tpl = get_markup_template('ch_helpers.tpl');
291
292                 if ($r) {
293
294                         $helpers = array();
295                         $helpers['title'] = array("", t('Help'), "", "");
296
297                         $aside['$helpers_items'] = array();
298
299                         foreach ($r as $rr) {
300                                 $entry = replace_macros($tpl,array(
301                                         '$url' => $rr['url'],
302                                         '$title' => $rr['name'],
303                                 ));
304                                 $aside['$helpers_items'][] = $entry;
305                         }
306
307                         $aside['$helpers'] = $helpers;
308                 }
309         }
310         // end helpers
311
312         // connectable services
313         if ($show_services) {
314
315                 /// @TODO This whole thing is hard-coded, better rewrite to Intercepting Filter Pattern (future-todo)
316                 $r = array();
317
318                 if (plugin_enabled("appnet")) {
319                         $r[] = array("photo" => "images/appnet.png", "name" => "App.net");
320                 }
321
322                 if (plugin_enabled("buffer")) {
323                         $r[] = array("photo" => "images/buffer.png", "name" => "Buffer");
324                 }
325
326                 if (plugin_enabled("blogger")) {
327                         $r[] = array("photo" => "images/blogger.png", "name" => "Blogger");
328                 }
329
330                 if (plugin_enabled("dwpost")) {
331                         $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth");
332                 }
333
334                 if (plugin_enabled("fbpost")) {
335                         $r[] = array("photo" => "images/facebook.png", "name" => "Facebook");
336                 }
337
338                 if (plugin_enabled("ifttt")) {
339                         $r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT");
340                 }
341
342                 if (plugin_enabled("statusnet")) {
343                         $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social");
344                 }
345
346                 if (plugin_enabled("gpluspost")) {
347                         $r[] = array("photo" => "images/googleplus.png", "name" => "Google+");
348                 }
349
350                 /// @TODO old-lost code (and below)?
351                 //if (plugin_enabled("ijpost")) {
352                 //      $r[] = array("photo" => "images/", "name" => "");
353                 //}
354
355                 if (plugin_enabled("libertree")) {
356                         $r[] = array("photo" => "images/libertree.png", "name" => "Libertree");
357                 }
358
359                 //if (plugin_enabled("ljpost")) {
360                 //      $r[] = array("photo" => "images/", "name" => "");
361                 //}
362
363                 if (plugin_enabled("pumpio")) {
364                         $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io");
365                 }
366
367                 if (plugin_enabled("tumblr")) {
368                         $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr");
369                 }
370
371                 if (plugin_enabled("twitter")) {
372                         $r[] = array("photo" => "images/twitter.png", "name" => "Twitter");
373                 }
374
375                 if (plugin_enabled("wppost")) {
376                         $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress");
377                 }
378
379                 if (function_exists("imap_open") && !Config::get("system","imap_disabled") && !Config::get("system","dfrn_only")) {
380                         $r[] = array("photo" => "images/mail.png", "name" => "E-Mail");
381                 }
382
383                 $tpl = get_markup_template('ch_connectors.tpl');
384
385                 if (DBM::is_result($r)) {
386
387                         $con_services = array();
388                         $con_services['title'] = array("", t('Connect Services'), "", "");
389                         $aside['$con_services'] = $con_services;
390
391                         foreach ($r as $rr) {
392                                 $entry = replace_macros($tpl,array(
393                                         '$url' => $url,
394                                         '$photo' => $rr['photo'],
395                                         '$alt_text' => $rr['name'],
396                                 ));
397                                 $aside['$connector_items'][] = $entry;
398                         }
399                 }
400
401         }
402         //end connectable services
403
404         //print right_aside
405         $tpl = get_markup_template('communityhome.tpl');
406         $a->page['right_aside'] = replace_macros($tpl, $aside);
407 }