]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
Revert "Move Objects to Model"
[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\Content\ForumManager;
14 use Friendica\Core\Config;
15 use Friendica\Core\PConfig;
16 use Friendica\Core\System;
17 use Friendica\Database\DBM;
18 use Friendica\Model\GlobalContact;
19
20 require_once "include/plugin.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 (!is_null($result)) {
114                         return $result;
115                 }
116         }
117
118         $result = Config::get("vier", $key);
119         if (!is_null($result)) {
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                 if (x($_GET, 'cid') && intval($_GET['cid']) != 0) {
215                         $cid = $_GET['cid'];
216                 }
217
218                 //sort by last updated item
219                 $lastitem = true;
220
221                 $contacts = ForumManager::getList($a->user['uid'], $lastitem, true, true);
222                 $total = count($contacts);
223                 $visible_forums = 10;
224
225                 if (count($contacts)) {
226                         $id = 0;
227
228                         foreach ($contacts as $contact) {
229                                 $selected = (($cid == $contact['id']) ? ' forum-selected' : '');
230
231                                 $entry = array(
232                                         'url'          => 'network?f=&cid=' . $contact['id'],
233                                         'external_url' => 'redir/' . $contact['id'],
234                                         'name'         => $contact['name'],
235                                         'cid'          => $contact['id'],
236                                         'selected'     => $selected,
237                                         'micro'        => System::removedBaseUrl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
238                                         'id'           => ++$id,
239                                 );
240                                 $entries[] = $entry;
241                         }
242
243
244                         $tpl = get_markup_template('widget_forumlist_right.tpl');
245
246                         $page .= replace_macros(
247                                 $tpl,
248                                 array(
249                                         '$title'          => t('Forums'),
250                                         '$forums'         => $entries,
251                                         '$link_desc'      => t('External link to forum'),
252                                         '$total'          => $total,
253                                         '$visible_forums' => $visible_forums,
254                                         '$showmore'       => t('show more'))
255                         );
256
257                         $aside['$page'] = $page;
258                 }
259         }
260         // END Community Page
261
262         // helpers
263         if ($show_helpers) {
264                 $r = array();
265
266                 $helperlist = Config::get("vier", "helperlist");
267
268                 $helpers = explode(",",$helperlist);
269
270                 if ($helpers) {
271                         $query = "";
272                         foreach ($helpers AS $index=>$helper) {
273                                 if ($query != "")
274                                         $query .= ",";
275
276                                 $query .= "'".dbesc(normalise_link(trim($helper)))."'";
277                         }
278
279                         $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query);
280                 }
281
282                 foreach ($r AS $index => $helper)
283                         $r[$index]["url"] = zrl($helper["url"]);
284
285                 $r[] = array("url" => "help/Quick-Start-guide", "name" => t("Quick Start"));
286
287                 $tpl = get_markup_template('ch_helpers.tpl');
288
289                 if ($r) {
290
291                         $helpers = array();
292                         $helpers['title'] = array("", t('Help'), "", "");
293
294                         $aside['$helpers_items'] = array();
295
296                         foreach ($r as $rr) {
297                                 $entry = replace_macros($tpl,array(
298                                         '$url' => $rr['url'],
299                                         '$title' => $rr['name'],
300                                 ));
301                                 $aside['$helpers_items'][] = $entry;
302                         }
303
304                         $aside['$helpers'] = $helpers;
305                 }
306         }
307         // end helpers
308
309         // connectable services
310         if ($show_services) {
311
312                 /// @TODO This whole thing is hard-coded, better rewrite to Intercepting Filter Pattern (future-todo)
313                 $r = array();
314
315                 if (plugin_enabled("appnet")) {
316                         $r[] = array("photo" => "images/appnet.png", "name" => "App.net");
317                 }
318
319                 if (plugin_enabled("buffer")) {
320                         $r[] = array("photo" => "images/buffer.png", "name" => "Buffer");
321                 }
322
323                 if (plugin_enabled("blogger")) {
324                         $r[] = array("photo" => "images/blogger.png", "name" => "Blogger");
325                 }
326
327                 if (plugin_enabled("dwpost")) {
328                         $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth");
329                 }
330
331                 if (plugin_enabled("fbpost")) {
332                         $r[] = array("photo" => "images/facebook.png", "name" => "Facebook");
333                 }
334
335                 if (plugin_enabled("ifttt")) {
336                         $r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT");
337                 }
338
339                 if (plugin_enabled("statusnet")) {
340                         $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social");
341                 }
342
343                 if (plugin_enabled("gpluspost")) {
344                         $r[] = array("photo" => "images/googleplus.png", "name" => "Google+");
345                 }
346
347                 /// @TODO old-lost code (and below)?
348                 //if (plugin_enabled("ijpost")) {
349                 //      $r[] = array("photo" => "images/", "name" => "");
350                 //}
351
352                 if (plugin_enabled("libertree")) {
353                         $r[] = array("photo" => "images/libertree.png", "name" => "Libertree");
354                 }
355
356                 //if (plugin_enabled("ljpost")) {
357                 //      $r[] = array("photo" => "images/", "name" => "");
358                 //}
359
360                 if (plugin_enabled("pumpio")) {
361                         $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io");
362                 }
363
364                 if (plugin_enabled("tumblr")) {
365                         $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr");
366                 }
367
368                 if (plugin_enabled("twitter")) {
369                         $r[] = array("photo" => "images/twitter.png", "name" => "Twitter");
370                 }
371
372                 if (plugin_enabled("wppost")) {
373                         $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress");
374                 }
375
376                 if (function_exists("imap_open") && !Config::get("system","imap_disabled") && !Config::get("system","dfrn_only")) {
377                         $r[] = array("photo" => "images/mail.png", "name" => "E-Mail");
378                 }
379
380                 $tpl = get_markup_template('ch_connectors.tpl');
381
382                 if (DBM::is_result($r)) {
383
384                         $con_services = array();
385                         $con_services['title'] = array("", t('Connect Services'), "", "");
386                         $aside['$con_services'] = $con_services;
387
388                         foreach ($r as $rr) {
389                                 $entry = replace_macros($tpl,array(
390                                         '$url' => $url,
391                                         '$photo' => $rr['photo'],
392                                         '$alt_text' => $rr['name'],
393                                 ));
394                                 $aside['$connector_items'][] = $entry;
395                         }
396                 }
397
398         }
399         //end connectable services
400
401         //print right_aside
402         $tpl = get_markup_template('communityhome.tpl');
403         $a->page['right_aside'] = replace_macros($tpl, $aside);
404 }