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