]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
1a4eb3e5acd92b198183795dfe0f73b468584f2b
[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("mod/nodeinfo.php");
13 require_once("mod/proxy.php");
14 require_once("include/socgraph.php");
15
16 function vier_init(&$a) {
17
18         $a->theme_events_in_profile = false;
19
20         set_template_engine($a, 'smarty3');
21
22         $baseurl = $a->get_baseurl();
23
24         $a->theme_info = array();
25
26         if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] or $a->argv[0] === "network" && local_user()) {
27                 vier_community_info();
28
29                 $a->page['htmlhead'] .= "<link rel='stylesheet' type='text/css' href='view/theme/vier/wide.css' media='screen and (min-width: 1300px)'/>\n";
30         }
31
32         if ($a->is_mobile || $a->is_tablet) {
33                 $a->page['htmlhead'] .= '<meta name=viewport content="width=device-width, initial-scale=1">'."\n";
34                 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen"/>'."\n";
35         }
36                 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="view/theme/vier/mobile.css" media="screen and (max-width: 1000px)"/>'."\n";
37
38 $a->page['htmlhead'] .= <<< EOT
39 <link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
40 <script type="text/javascript">
41
42 function insertFormatting(comment,BBcode,id) {
43
44                 var tmpStr = $("#comment-edit-text-" + id).val();
45                 if(tmpStr == comment) {
46                         tmpStr = "";
47                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
48                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
49                         openMenu("comment-edit-submit-wrapper-" + id);
50                         $("#comment-edit-text-" + id).val(tmpStr);
51                 }
52
53         textarea = document.getElementById("comment-edit-text-" +id);
54         if (document.selection) {
55                 textarea.focus();
56                 selected = document.selection.createRange();
57                 if (BBcode == "url"){
58                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
59                         } else
60                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
61         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
62                 var start = textarea.selectionStart;
63                 var end = textarea.selectionEnd;
64                 if (BBcode == "url"){
65                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
66                         } else
67                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
68         }
69         return true;
70 }
71
72
73 function showThread(id) {
74         $("#collapsed-comments-" + id).show()
75         $("#collapsed-comments-" + id + " .collapsed-comments").show()
76 }
77 function hideThread(id) {
78         $("#collapsed-comments-" + id).hide()
79         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
80 }
81
82
83 function cmtBbOpen(id) {
84         $("#comment-edit-bb-" + id).show();
85 }
86 function cmtBbClose(id) {
87         $("#comment-edit-bb-" + id).hide();
88 }
89 </script>
90 EOT;
91
92         // Hide the left menu bar
93         if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications",
94                                                                         "probe", "webfinger", "login", "invite", "credits")))
95                 $a->page['htmlhead'] .= "<link rel='stylesheet' href='view/theme/vier/hide.css' />";
96 }
97
98 function get_vier_config($key, $default = false, $admin = false) {
99         if (local_user() AND !$admin) {
100                 $result = get_pconfig(local_user(), "vier", $key);
101                 if ($result !== false)
102                         return $result;
103         }
104
105         $result = get_config("vier", $key);
106         if ($result !== false)
107                 return $result;
108
109         return $default;
110 }
111
112 function vier_community_info() {
113         $a = get_app();
114
115         $show_pages      = get_vier_config("show_pages", 1);
116         $show_profiles   = get_vier_config("show_profiles", 1);
117         $show_helpers    = get_vier_config("show_helpers", 1);
118         $show_services   = get_vier_config("show_services", 1);
119         $show_friends    = get_vier_config("show_friends", 1);
120         $show_lastusers  = get_vier_config("show_lastusers", 1);
121
122         //get_baseurl
123         $url = $a->get_baseurl($ssl_state);
124         $aside['$url'] = $url;
125
126         // comunity_profiles
127         if($show_profiles) {
128
129                 $r = suggestion_query(local_user(), 0, 9);
130
131                 $tpl = get_markup_template('ch_directory_item.tpl');
132                 if(count($r)) {
133
134                         $aside['$comunity_profiles_title'] = t('Community Profiles');
135                         $aside['$comunity_profiles_items'] = array();
136
137                         foreach($r as $rr) {
138                                 $entry = replace_macros($tpl,array(
139                                         '$id' => $rr['id'],
140                                         //'$profile_link' => zrl($rr['url']),
141                                         '$profile_link' => $a->get_baseurl().'/follow/?url='.urlencode($rr['url']),
142                                         '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_MICRO),
143                                         '$alt_text' => $rr['name'],
144                                 ));
145                                 $aside['$comunity_profiles_items'][] = $entry;
146                         }
147                 }
148         }
149
150         // last 9 users
151         if($show_lastusers) {
152                 $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 ");
153                 $order = " ORDER BY `register_date` DESC ";
154
155                 $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
156                                 FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
157                                 WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $order LIMIT %d , %d ",
158                                 0, 9);
159
160                 $tpl = get_markup_template('ch_directory_item.tpl');
161                 if(count($r)) {
162
163                         $aside['$lastusers_title'] = t('Last users');
164                         $aside['$lastusers_items'] = array();
165
166                         foreach($r as $rr) {
167                                 $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
168                                 $entry = replace_macros($tpl,array(
169                                         '$id' => $rr['id'],
170                                         '$profile_link' => $profile_link,
171                                         '$photo' => $a->get_cached_avatar_image($rr['thumb']),
172                                         '$alt_text' => $rr['name']));
173                                 $aside['$lastusers_items'][] = $entry;
174                         }
175                 }
176         }
177
178         //right_aside FIND FRIENDS
179         if ($show_friends AND local_user()) {
180                 $nv = array();
181                 $nv['title'] = Array("", t('Find Friends'), "", "");
182                 $nv['directory'] = Array('directory', t('Local Directory'), "", "");
183                 $nv['global_directory'] = Array(get_server(), t('Global Directory'), "", "");
184                 $nv['match'] = Array('match', t('Similar Interests'), "", "");
185                 $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", "");
186                 $nv['invite'] = Array('invite', t('Invite Friends'), "", "");
187
188                 $nv['search'] = '<form name="simple_bar" method="get" action="'.$a->get_baseurl().'/dirfind">
189                                                 <span class="sbox_l"></span>
190                                                 <span class="sbox">
191                                                 <input type="text" name="search" size="13" maxlength="50">
192                                                 </span>
193                                                 <span class="sbox_r" id="srch_clear"></span>';
194
195                 $aside['$nv'] = $nv;
196         }
197
198         //Community_Pages at right_aside
199         if($show_pages AND local_user()) {
200
201                 $pagelist = array();
202
203                 $contacts = q("SELECT `id`, `url`, `name`, `micro` FROM `contact`
204                                 WHERE `network`= '%s' AND `uid` = %d AND (`forum` OR `prv`) AND
205                                         NOT `hidden` AND NOT `blocked` AND
206                                         NOT `archive` AND NOT `pending` AND
207                                         `success_update` > `failure_update`
208                                 ORDER BY `name` ASC",
209                                 dbesc(NETWORK_DFRN), intval($a->user['uid']));
210
211                 $pageD = array();
212
213                 // Look if the profile is a community page
214                 foreach($contacts as $contact) {
215                         $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
216                 };
217
218                 $contacts = $pageD;
219
220                 if ($contacts) {
221                         $page = '
222                                 <h3>'.t("Community Pages").'</h3>
223                                 <div id="forum-list-right">';
224
225                         foreach($contacts as $contact) {
226                                 $page .= '<div role="menuitem"><a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="'.t('External link to forum').'" class="label sparkle" target="_blank"><img class="forumlist-img" height="20" width="20" src="' . $contact['micro'] .'" alt="'.t('External link to forum').'" /></a> <a href="' . $a->get_baseurl() . '/network?f=&cid=' . $contact['id'] . '" >' . $contact["name"]."</a></div>";
227                         }
228
229                         $page .= '</div>';
230                         $aside['$page'] = $page;
231                 }
232         }
233         //END Community Page
234
235         //helpers
236         if($show_helpers) {
237                 $r = array();
238
239                 $helperlist = get_config("vier", "helperlist");
240
241                 $helpers = explode(",",$helperlist);
242
243                 if ($helpers) {
244                         $query = "";
245                         foreach ($helpers AS $index=>$helper) {
246                                 if ($query != "")
247                                         $query .= ",";
248
249                                 $query .= "'".dbesc(normalise_link(trim($helper)))."'";
250                         }
251
252                         $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query);
253                 }
254
255                 foreach ($r AS $index => $helper)
256                         $r[$index]["url"] = zrl($helper["url"]);
257
258                 $r[] = Array("url" => "help/Quick-Start-guide", "name" => t("Quick Start"));
259
260                 $tpl = get_markup_template('ch_helpers.tpl');
261
262                 if ($r) {
263
264                         $helpers = array();
265                         $helpers['title'] = Array("", t('Help'), "", "");
266
267                         $aside['$helpers_items'] = array();
268
269                         foreach($r as $rr) {
270                                 $entry = replace_macros($tpl,array(
271                                         '$url' => $rr['url'],
272                                         '$title' => $rr['name'],
273                                 ));
274                                 $aside['$helpers_items'][] = $entry;
275                         }
276
277                         $aside['$helpers'] = $helpers;
278                 }
279         }
280         //end helpers
281
282         //connectable services
283         if ($show_services) {
284
285                 $r = array();
286
287                 if (nodeinfo_plugin_enabled("appnet"))
288                         $r[] = array("photo" => "images/appnet.png", "name" => "App.net");
289
290                 if (nodeinfo_plugin_enabled("buffer"))
291                         $r[] = array("photo" => "images/buffer.png", "name" => "Buffer");
292
293                 if (nodeinfo_plugin_enabled("blogger"))
294                         $r[] = array("photo" => "images/blogger.png", "name" => "Blogger");
295
296                 if (nodeinfo_plugin_enabled("dwpost"))
297                         $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth");
298
299                 if (nodeinfo_plugin_enabled("fbpost"))
300                         $r[] = array("photo" => "images/facebook.png", "name" => "Facebook");
301
302                 if (nodeinfo_plugin_enabled("ifttt"))
303                         $r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT");
304
305                 if (nodeinfo_plugin_enabled("statusnet"))
306                         $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social");
307
308                 if (nodeinfo_plugin_enabled("gpluspost"))
309                         $r[] = array("photo" => "images/googleplus.png", "name" => "Google+");
310
311                 //if (nodeinfo_plugin_enabled("ijpost"))
312                 //      $r[] = array("photo" => "images/", "name" => "");
313
314                 if (nodeinfo_plugin_enabled("libertree"))
315                         $r[] = array("photo" => "images/libertree.png", "name" => "Libertree");
316
317                 //if (nodeinfo_plugin_enabled("ljpost"))
318                 //      $r[] = array("photo" => "images/", "name" => "");
319
320                 if (nodeinfo_plugin_enabled("pumpio"))
321                         $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io");
322
323                 if (nodeinfo_plugin_enabled("tumblr"))
324                         $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr");
325
326                 if (nodeinfo_plugin_enabled("twitter"))
327                         $r[] = array("photo" => "images/twitter.png", "name" => "Twitter");
328
329                 if (nodeinfo_plugin_enabled("wppost"))
330                         $r[] = array("photo" => "images/wordpress", "name" => "Wordpress");
331
332                 if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only"))
333                         $r[] = array("photo" => "images/mail", "name" => "E-Mail");
334
335                 $tpl = get_markup_template('ch_connectors.tpl');
336
337                 if(count($r)) {
338
339                         $con_services = array();
340                         $con_services['title'] = Array("", t('Connect Services'), "", "");
341                         $aside['$con_services'] = $con_services;
342
343                         foreach($r as $rr) {
344                                 $entry = replace_macros($tpl,array(
345                                         '$url' => $url,
346                                         '$photo' => $rr['photo'],
347                                         '$alt_text' => $rr['name'],
348                                 ));
349                                 $aside['$connector_items'][] = $entry;
350                         }
351                 }
352
353         }
354         //end connectable services
355
356         //print right_aside
357         $tpl = get_markup_template('communityhome.tpl');
358         $a->page['right_aside'] = replace_macros($tpl, $aside);
359 }