]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
96aae57111f4089aaf8800f6be894d7a247b3164
[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 require_once("include/plugin.php");
13 require_once("include/socgraph.php");
14 require_once("mod/proxy.php");
15
16 function vier_init(App &$a) {
17
18         $a->theme_events_in_profile = false;
19
20         set_template_engine($a, 'smarty3');
21
22         if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] or $a->argv[0] === "network" && local_user()) {
23                 vier_community_info();
24
25                 $a->page['htmlhead'] .= "<link rel='stylesheet' type='text/css' href='view/theme/vier/wide.css' media='screen and (min-width: 1300px)'/>\n";
26         }
27
28         if ($a->is_mobile || $a->is_tablet) {
29                 $a->page['htmlhead'] .= '<meta name=viewport content="width=device-width, initial-scale=1">'."\n";
30                 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen"/>'."\n";
31         }
32         /// @todo deactivated since it doesn't work with desktop browsers at the moment
33         //$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen and (max-width: 1000px)"/>'."\n";
34
35         $a->page['htmlhead'] .= <<< EOT
36 <link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
37 <script type="text/javascript">
38
39 function insertFormatting(BBcode, id) {
40         var tmpStr = $("#comment-edit-text-" + id).val();
41         if (tmpStr == "") {
42                 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
43                 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
44                 openMenu("comment-edit-submit-wrapper-" + id);
45                 $("#comment-edit-text-" + id).val(tmpStr);
46         }
47
48         textarea = document.getElementById("comment-edit-text-" +id);
49         if (document.selection) {
50                 textarea.focus();
51                 selected = document.selection.createRange();
52                 if (BBcode == "url") {
53                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
54                 } else {
55                         selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
56                 }
57         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
58                 var start = textarea.selectionStart;
59                 var end = textarea.selectionEnd;
60                 if (BBcode == "url") {
61                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
62                 } else {
63                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
64                 }
65         }
66
67         return true;
68 }
69
70 function showThread(id) {
71         $("#collapsed-comments-" + id).show()
72         $("#collapsed-comments-" + id + " .collapsed-comments").show()
73 }
74 function hideThread(id) {
75         $("#collapsed-comments-" + id).hide()
76         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
77 }
78
79 function cmtBbOpen(id) {
80         $("#comment-edit-bb-" + id).show();
81 }
82 function cmtBbClose(id) {
83         $("#comment-edit-bb-" + id).hide();
84 }
85 </script>
86 EOT;
87
88         if ($a->is_mobile || $a->is_tablet){
89                 $a->page['htmlhead'] .= <<< EOT
90 <script>
91         $(document).ready(function() {
92                 $(".mobile-aside-toggle a").click(function(e){
93                         e.preventDefault();
94                         $("aside").toggleClass("show");
95                 });
96                 $(".tabs").click(function(e){
97                         $(this).toggleClass("show");
98                 });
99         });
100 </script>
101 EOT;
102         }
103
104         // Hide the left menu bar
105         if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications",
106                                                                         "probe", "webfinger", "login", "invite", "credits"))) {
107                 $a->page['htmlhead'] .= "<link rel='stylesheet' href='view/theme/vier/hide.css' />";
108         }
109 }
110
111 function get_vier_config($key, $default = false, $admin = false) {
112         if (local_user() AND !$admin) {
113                 $result = get_pconfig(local_user(), "vier", $key);
114                 if ($result !== false)
115                         return $result;
116         }
117
118         $result = get_config("vier", $key);
119         if ($result !== false)
120                 return $result;
121
122         return $default;
123 }
124
125 function vier_community_info() {
126         $a = get_app();
127
128         $show_pages      = get_vier_config("show_pages", 1);
129         $show_profiles   = get_vier_config("show_profiles", 1);
130         $show_helpers    = get_vier_config("show_helpers", 1);
131         $show_services   = get_vier_config("show_services", 1);
132         $show_friends    = get_vier_config("show_friends", 1);
133         $show_lastusers  = get_vier_config("show_lastusers", 1);
134
135         //get_baseurl
136         $url = App::get_baseurl($ssl_state);
137         $aside['$url'] = $url;
138
139         // comunity_profiles
140         if ($show_profiles) {
141
142                 $r = suggestion_query(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 = (get_config('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 AND 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 AND 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                 //sort by last updated item
221                 $lastitem = true;
222
223                 $contacts = ForumManager::get_list($a->user['uid'],true,$lastitem, true);
224                 $total = count($contacts);
225                 $visible_forums = 10;
226
227                 if (count($contacts)) {
228
229                         $id = 0;
230
231                         foreach($contacts as $contact) {
232
233                                 $selected = (($cid == $contact['id']) ? ' forum-selected' : '');
234
235                                 $entry = array(
236                                         'url' => 'network?f=&cid=' . $contact['id'],
237                                         'external_url' => 'redir/' . $contact['id'],
238                                         'name' => $contact['name'],
239                                         'cid' => $contact['id'],
240                                         'selected'      => $selected,
241                                         'micro' => App::remove_baseurl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
242                                         'id' => ++$id,
243                                 );
244                                 $entries[] = $entry;
245                         }
246
247
248                         $tpl = get_markup_template('widget_forumlist_right.tpl');
249
250                         $page .= replace_macros($tpl,array(
251                                 '$title'        => t('Forums'),
252                                 '$forums'       => $entries,
253                                 '$link_desc'    => t('External link to forum'),
254                                 '$total'        => $total,
255                                 '$visible_forums' => $visible_forums,
256                                 '$showmore'     => t('show more'),
257                         ));
258
259                         $aside['$page'] = $page;
260                 }
261         }
262         //END Community Page
263
264         //helpers
265         if ($show_helpers) {
266                 $r = array();
267
268                 $helperlist = get_config("vier", "helperlist");
269
270                 $helpers = explode(",",$helperlist);
271
272                 if ($helpers) {
273                         $query = "";
274                         foreach ($helpers AS $index=>$helper) {
275                                 if ($query != "")
276                                         $query .= ",";
277
278                                 $query .= "'".dbesc(normalise_link(trim($helper)))."'";
279                         }
280
281                         $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query);
282                 }
283
284                 foreach ($r AS $index => $helper)
285                         $r[$index]["url"] = zrl($helper["url"]);
286
287                 $r[] = Array("url" => "help/Quick-Start-guide", "name" => t("Quick Start"));
288
289                 $tpl = get_markup_template('ch_helpers.tpl');
290
291                 if ($r) {
292
293                         $helpers = array();
294                         $helpers['title'] = Array("", t('Help'), "", "");
295
296                         $aside['$helpers_items'] = array();
297
298                         foreach ($r as $rr) {
299                                 $entry = replace_macros($tpl,array(
300                                         '$url' => $rr['url'],
301                                         '$title' => $rr['name'],
302                                 ));
303                                 $aside['$helpers_items'][] = $entry;
304                         }
305
306                         $aside['$helpers'] = $helpers;
307                 }
308         }
309         //end helpers
310
311         //connectable services
312         if ($show_services) {
313
314                 /// @TODO This whole thing is hard-coded, better rewrite to Intercepting Filter Pattern (future-todo)
315                 $r = array();
316
317                 if (plugin_enabled("appnet")) {
318                         $r[] = array("photo" => "images/appnet.png", "name" => "App.net");
319                 }
320
321                 if (plugin_enabled("buffer")) {
322                         $r[] = array("photo" => "images/buffer.png", "name" => "Buffer");
323                 }
324
325                 if (plugin_enabled("blogger")) {
326                         $r[] = array("photo" => "images/blogger.png", "name" => "Blogger");
327                 }
328
329                 if (plugin_enabled("dwpost")) {
330                         $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth");
331                 }
332
333                 if (plugin_enabled("fbpost")) {
334                         $r[] = array("photo" => "images/facebook.png", "name" => "Facebook");
335                 }
336
337                 if (plugin_enabled("ifttt")) {
338                         $r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT");
339                 }
340
341                 if (plugin_enabled("statusnet")) {
342                         $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social");
343                 }
344
345                 if (plugin_enabled("gpluspost")) {
346                         $r[] = array("photo" => "images/googleplus.png", "name" => "Google+");
347                 }
348
349                 //if (plugin_enabled("ijpost")) {
350                 //      $r[] = array("photo" => "images/", "name" => "");
351                 //}
352
353                 if (plugin_enabled("libertree")) {
354                         $r[] = array("photo" => "images/libertree.png", "name" => "Libertree");
355                 }
356
357                 //if (plugin_enabled("ljpost")) {
358                 //      $r[] = array("photo" => "images/", "name" => "");
359                 //}
360
361                 if (plugin_enabled("pumpio")) {
362                         $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io");
363                 }
364
365                 if (plugin_enabled("tumblr")) {
366                         $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr");
367                 }
368
369                 if (plugin_enabled("twitter")) {
370                         $r[] = array("photo" => "images/twitter.png", "name" => "Twitter");
371                 }
372
373                 if (plugin_enabled("wppost")) {
374                         $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress");
375                 }
376
377                 if (function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")) {
378                         $r[] = array("photo" => "images/mail.png", "name" => "E-Mail");
379                 }
380
381                 $tpl = get_markup_template('ch_connectors.tpl');
382
383                 if (dbm::is_result($r)) {
384
385                         $con_services = array();
386                         $con_services['title'] = Array("", t('Connect Services'), "", "");
387                         $aside['$con_services'] = $con_services;
388
389                         foreach ($r as $rr) {
390                                 $entry = replace_macros($tpl,array(
391                                         '$url' => $url,
392                                         '$photo' => $rr['photo'],
393                                         '$alt_text' => $rr['name'],
394                                 ));
395                                 $aside['$connector_items'][] = $entry;
396                         }
397                 }
398
399         }
400         //end connectable services
401
402         //print right_aside
403         $tpl = get_markup_template('communityhome.tpl');
404         $a->page['right_aside'] = replace_macros($tpl, $aside);
405 }