]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
Merge pull request #2686 from rabuzarus/2107-contact_edit
[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(&$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                 // deactivated since it doesn't work with desktop browsers at the moment (To-Do)
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(comment,BBcode,id) {
40
41                 var tmpStr = $("#comment-edit-text-" + id).val();
42                 if(tmpStr == comment) {
43                         tmpStr = "";
44                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
45                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
46                         openMenu("comment-edit-submit-wrapper-" + id);
47                         $("#comment-edit-text-" + id).val(tmpStr);
48                 }
49
50         textarea = document.getElementById("comment-edit-text-" +id);
51         if (document.selection) {
52                 textarea.focus();
53                 selected = document.selection.createRange();
54                 if (BBcode == "url"){
55                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
56                         } else
57                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
58         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
59                 var start = textarea.selectionStart;
60                 var end = textarea.selectionEnd;
61                 if (BBcode == "url"){
62                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
63                         } else
64                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
65         }
66         return true;
67 }
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
80 function cmtBbOpen(id) {
81         $("#comment-edit-bb-" + id).show();
82 }
83 function cmtBbClose(id) {
84         $("#comment-edit-bb-" + id).hide();
85 }
86
87
88
89 </script>
90 EOT;
91
92
93 if ($a->is_mobile || $a->is_tablet){
94         $a->page['htmlhead'] .= <<< EOT
95 <script>
96         $(document).ready(function() {
97                 $(".mobile-aside-toggle a").click(function(e){
98                         e.preventDefault();
99                         $("aside").toggleClass("show");
100                 });
101                 $(".tabs").click(function(e){
102                         $(this).toggleClass("show");
103                 });
104         });
105 </script>
106 EOT;
107 }
108
109
110         // Hide the left menu bar
111         if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications",
112                                                                         "probe", "webfinger", "login", "invite", "credits")))
113                 $a->page['htmlhead'] .= "<link rel='stylesheet' href='view/theme/vier/hide.css' />";
114 }
115
116 function get_vier_config($key, $default = false, $admin = false) {
117         if (local_user() AND !$admin) {
118                 $result = get_pconfig(local_user(), "vier", $key);
119                 if ($result !== false)
120                         return $result;
121         }
122
123         $result = get_config("vier", $key);
124         if ($result !== false)
125                 return $result;
126
127         return $default;
128 }
129
130 function vier_community_info() {
131         $a = get_app();
132
133         $show_pages      = get_vier_config("show_pages", 1);
134         $show_profiles   = get_vier_config("show_profiles", 1);
135         $show_helpers    = get_vier_config("show_helpers", 1);
136         $show_services   = get_vier_config("show_services", 1);
137         $show_friends    = get_vier_config("show_friends", 1);
138         $show_lastusers  = get_vier_config("show_lastusers", 1);
139
140         //get_baseurl
141         $url = $a->get_baseurl($ssl_state);
142         $aside['$url'] = $url;
143
144         // comunity_profiles
145         if($show_profiles) {
146
147                 $r = suggestion_query(local_user(), 0, 9);
148
149                 $tpl = get_markup_template('ch_directory_item.tpl');
150                 if(count($r)) {
151
152                         $aside['$comunity_profiles_title'] = t('Community Profiles');
153                         $aside['$comunity_profiles_items'] = array();
154
155                         foreach($r as $rr) {
156                                 $entry = replace_macros($tpl,array(
157                                         '$id' => $rr['id'],
158                                         //'$profile_link' => zrl($rr['url']),
159                                         '$profile_link' => 'follow/?url='.urlencode($rr['url']),
160                                         '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_MICRO),
161                                         '$alt_text' => $rr['name'],
162                                 ));
163                                 $aside['$comunity_profiles_items'][] = $entry;
164                         }
165                 }
166         }
167
168         // last 9 users
169         if($show_lastusers) {
170                 $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 ");
171                 $order = " ORDER BY `register_date` DESC ";
172
173                 $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
174                                 FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
175                                 WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $order LIMIT %d , %d ",
176                                 0, 9);
177
178                 $tpl = get_markup_template('ch_directory_item.tpl');
179                 if(count($r)) {
180
181                         $aside['$lastusers_title'] = t('Last users');
182                         $aside['$lastusers_items'] = array();
183
184                         foreach($r as $rr) {
185                                 $profile_link = 'profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
186                                 $entry = replace_macros($tpl,array(
187                                         '$id' => $rr['id'],
188                                         '$profile_link' => $profile_link,
189                                         '$photo' => $a->remove_baseurl($rr['thumb']),
190                                         '$alt_text' => $rr['name']));
191                                 $aside['$lastusers_items'][] = $entry;
192                         }
193                 }
194         }
195
196         //right_aside FIND FRIENDS
197         if ($show_friends AND local_user()) {
198                 $nv = array();
199                 $nv['title'] = Array("", t('Find Friends'), "", "");
200                 $nv['directory'] = Array('directory', t('Local Directory'), "", "");
201                 $nv['global_directory'] = Array(get_server(), t('Global Directory'), "", "");
202                 $nv['match'] = Array('match', t('Similar Interests'), "", "");
203                 $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", "");
204                 $nv['invite'] = Array('invite', t('Invite Friends'), "", "");
205
206                 $nv['search'] = '<form name="simple_bar" method="get" action="dirfind">
207                                                 <span class="sbox_l"></span>
208                                                 <span class="sbox">
209                                                 <input type="text" name="search" size="13" maxlength="50">
210                                                 </span>
211                                                 <span class="sbox_r" id="srch_clear"></span>';
212
213                 $aside['$nv'] = $nv;
214         }
215
216         //Community_Pages at right_aside
217         if($show_pages AND local_user()) {
218
219                 require_once('include/ForumManager.php');
220
221                 if(x($_GET['cid']) && intval($_GET['cid']) != 0)
222                         $cid = $_GET['cid'];
223
224                 //sort by last updated item
225                 $lastitem = true;
226
227                 $contacts = ForumManager::get_list($a->user['uid'],true,$lastitem, true);
228                 $total = count($contacts);
229                 $visible_forums = 10;
230
231                 if(count($contacts)) {
232
233                         $id = 0;
234
235                         foreach($contacts as $contact) {
236
237                                 $selected = (($cid == $contact['id']) ? ' forum-selected' : '');
238
239                                 $entry = array(
240                                         'url' => 'network?f=&cid=' . $contact['id'],
241                                         'external_url' => 'redir/' . $contact['id'],
242                                         'name' => $contact['name'],
243                                         'cid' => $contact['id'],
244                                         'selected'      => $selected,
245                                         'micro' => App::remove_baseurl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
246                                         'id' => ++$id,
247                                 );
248                                 $entries[] = $entry;
249                         }
250
251
252                         $tpl = get_markup_template('widget_forumlist_right.tpl');
253
254                         $page .= replace_macros($tpl,array(
255                                 '$title'        => t('Forums'),
256                                 '$forums'       => $entries,
257                                 '$link_desc'    => t('External link to forum'),
258                                 '$total'        => $total,
259                                 '$visible_forums' => $visible_forums,
260                                 '$showmore'     => t('show more'),
261                         ));
262
263                         $aside['$page'] = $page;
264                 }
265         }
266         //END Community Page
267
268         //helpers
269         if($show_helpers) {
270                 $r = array();
271
272                 $helperlist = get_config("vier", "helperlist");
273
274                 $helpers = explode(",",$helperlist);
275
276                 if ($helpers) {
277                         $query = "";
278                         foreach ($helpers AS $index=>$helper) {
279                                 if ($query != "")
280                                         $query .= ",";
281
282                                 $query .= "'".dbesc(normalise_link(trim($helper)))."'";
283                         }
284
285                         $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query);
286                 }
287
288                 foreach ($r AS $index => $helper)
289                         $r[$index]["url"] = zrl($helper["url"]);
290
291                 $r[] = Array("url" => "help/Quick-Start-guide", "name" => t("Quick Start"));
292
293                 $tpl = get_markup_template('ch_helpers.tpl');
294
295                 if ($r) {
296
297                         $helpers = array();
298                         $helpers['title'] = Array("", t('Help'), "", "");
299
300                         $aside['$helpers_items'] = array();
301
302                         foreach($r as $rr) {
303                                 $entry = replace_macros($tpl,array(
304                                         '$url' => $rr['url'],
305                                         '$title' => $rr['name'],
306                                 ));
307                                 $aside['$helpers_items'][] = $entry;
308                         }
309
310                         $aside['$helpers'] = $helpers;
311                 }
312         }
313         //end helpers
314
315         //connectable services
316         if ($show_services) {
317
318                 $r = array();
319
320                 if (plugin_enabled("appnet"))
321                         $r[] = array("photo" => "images/appnet.png", "name" => "App.net");
322
323                 if (plugin_enabled("buffer"))
324                         $r[] = array("photo" => "images/buffer.png", "name" => "Buffer");
325
326                 if (plugin_enabled("blogger"))
327                         $r[] = array("photo" => "images/blogger.png", "name" => "Blogger");
328
329                 if (plugin_enabled("dwpost"))
330                         $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth");
331
332                 if (plugin_enabled("fbpost"))
333                         $r[] = array("photo" => "images/facebook.png", "name" => "Facebook");
334
335                 if (plugin_enabled("ifttt"))
336                         $r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT");
337
338                 if (plugin_enabled("statusnet"))
339                         $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social");
340
341                 if (plugin_enabled("gpluspost"))
342                         $r[] = array("photo" => "images/googleplus.png", "name" => "Google+");
343
344                 //if (plugin_enabled("ijpost"))
345                 //      $r[] = array("photo" => "images/", "name" => "");
346
347                 if (plugin_enabled("libertree"))
348                         $r[] = array("photo" => "images/libertree.png", "name" => "Libertree");
349
350                 //if (plugin_enabled("ljpost"))
351                 //      $r[] = array("photo" => "images/", "name" => "");
352
353                 if (plugin_enabled("pumpio"))
354                         $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io");
355
356                 if (plugin_enabled("tumblr"))
357                         $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr");
358
359                 if (plugin_enabled("twitter"))
360                         $r[] = array("photo" => "images/twitter.png", "name" => "Twitter");
361
362                 if (plugin_enabled("wppost"))
363                         $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress");
364
365                 if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only"))
366                         $r[] = array("photo" => "images/mail.png", "name" => "E-Mail");
367
368                 $tpl = get_markup_template('ch_connectors.tpl');
369
370                 if(count($r)) {
371
372                         $con_services = array();
373                         $con_services['title'] = Array("", t('Connect Services'), "", "");
374                         $aside['$con_services'] = $con_services;
375
376                         foreach($r as $rr) {
377                                 $entry = replace_macros($tpl,array(
378                                         '$url' => $url,
379                                         '$photo' => $rr['photo'],
380                                         '$alt_text' => $rr['name'],
381                                 ));
382                                 $aside['$connector_items'][] = $entry;
383                         }
384                 }
385
386         }
387         //end connectable services
388
389         //print right_aside
390         $tpl = get_markup_template('communityhome.tpl');
391         $a->page['right_aside'] = replace_macros($tpl, $aside);
392 }