]> git.mxchange.org Git - friendica.git/blob - view/theme/diabook/theme.php
diabook-theme: made boxes at right_aside sortable
[friendica.git] / view / theme / diabook / theme.php
1 <?php
2
3 /*
4  * Name: Diabook
5  * Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
6  * Version: (Version: 1.025)
7  * Author: 
8  */
9
10 $a = get_app();
11 $a->theme_info = array(
12     'family' => 'diabook',
13         'version' => '1.025'
14 );
15
16 function diabook_init(&$a) {
17         
18 //print diabook-version for debugging
19 $diabook_version = "Diabook (Version: 1.025)";
20 $a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
21
22 //change css on network and profilepages
23 $cssFile = null;
24
25 $resolution=false;
26 $resolution = get_pconfig(local_user(), "diabook", "resolution");
27 if ($resolution===false) $resolution="normal";
28
29 //Add META viewport tag respecting the resolution to header for tablets
30 if ($resolution=="wide") {
31   $a->page['htmlhead'] .= '<meta name="viewport" content="width=1200" />';
32 } else {
33   $a->page['htmlhead'] .= '<meta name="viewport" content="width=980" />';
34 }
35
36
37 $color = false;
38 $site_color = get_config("diabook", "color" );
39 if (local_user()) {$color = get_pconfig(local_user(), "diabook", "color");}
40 if ($color===false) $color=$site_color;
41 if ($color===false) $color="diabook";
42
43 if ($color=="diabook") $color_path = "/";
44 if ($color=="aerith") $color_path = "/diabook-aerith/";
45 if ($color=="blue") $color_path = "/diabook-blue/";
46 if ($color=="red") $color_path = "/diabook-red/";
47 if ($color=="pink") $color_path = "/diabook-pink/";
48 if ($color=="green") $color_path = "/diabook-green/";
49 if ($color=="dark") $color_path = "/diabook-dark/";
50
51
52         //profile_side at networkpages
53         if ($a->argv[0] === "network" && local_user()){
54
55         // USER MENU
56         if(local_user()) {
57                 
58                 $r = q("SELECT micro FROM contact WHERE uid=%d AND self=1", intval($a->user['uid']));
59                                 
60                 $userinfo = array(
61                                         'icon' => (count($r) ? $r[0]['micro']: $a->get_baseurl()."/images/default-profile-mm.jpg"),
62                                         'name' => $a->user['username'],
63                                 );      
64                 $ps = array('usermenu'=>array());
65                 $ps['usermenu']['status'] = Array('profile/' . $a->user['nickname'], t('Home'), "", t('Your posts and conversations'));
66                 $ps['usermenu']['profile'] = Array('profile/' . $a->user['nickname']. '?tab=profile', t('Profile'), "", t('Your profile page'));
67                 $ps['usermenu']['contacts'] = Array('contacts' , t('Contacts'), "", t('Your contacts'));                                
68                 $ps['usermenu']['photos'] = Array('photos/' . $a->user['nickname'], t('Photos'), "", t('Your photos'));
69                 $ps['usermenu']['events'] = Array('events/', t('Events'), "", t('Your events'));
70                 $ps['usermenu']['notes'] = Array('notes/', t('Personal notes'), "", t('Your personal photos'));
71                 $ps['usermenu']['community'] = Array('community/', t('Community'), "", "");
72                 $ps['usermenu']['pgroups'] = Array('http://dir.friendica.com/directory/forum', t('Community Pages'), "", "");
73
74                 $tpl = get_markup_template('profile_side.tpl');
75
76                 $a->page['aside'] = replace_macros($tpl, array(
77                                 '$userinfo' => $userinfo,
78                                 '$ps' => $ps,
79                         )).$a->page['aside'];
80
81         }
82         
83         $ccCookie = $_COOKIE['close_pages'] + $_COOKIE['close_profiles'] + $_COOKIE['close_helpers'] + $_COOKIE['close_services'] + $_COOKIE['close_friends'] + $_COOKIE['close_twitter'] + $_COOKIE['close_lastusers'] + $_COOKIE['close_lastphotos'] + $_COOKIE['close_lastlikes'];
84         
85         if($ccCookie != "9") {
86         // COMMUNITY
87         diabook_community_info();
88
89         // CUSTOM CSS
90         if($resolution == "normal") {$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook".$color_path."style-network.css";}
91         if($resolution == "wide") {$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook".$color_path."style-network-wide.css";}
92         }
93         }
94
95
96
97         //right_aside at profile pages
98         if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
99         if($ccCookie != "9") {
100         // COMMUNITY
101         diabook_community_info();
102         
103         // CUSTOM CSS
104         if($resolution == "normal") {$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook".$color_path."style-profile.css";}
105         if($resolution == "wide") {$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook".$color_path."style-profile-wide.css";}
106         
107         }
108         }
109         
110         //js scripts
111         //load jquery.cookie.js
112         $cookieJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.cookie.js";
113         $a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s"></script>', $cookieJS);
114         
115         //load jquery.ae.image.resize.js
116         $imageresizeJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.ae.image.resize.js";
117         $a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" ></script>', $imageresizeJS);
118         
119         //load jquery.ui.js
120         $jqueryuiJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery-ui-1.8.20.custom.min.js";
121         $a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" ></script>', $jqueryuiJS);
122         
123         //load jquery.twitter.search.js
124         if($_COOKIE['close_twitter'] != "1") {
125         $twitterJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.twitter.search.js";
126         $a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" ></script>', $twitterJS);
127         }
128         
129         $a->page['htmlhead'] .= '
130         <script>
131         
132          $(function() {
133                 $("a.lightbox").fancybox(); // Select all links with lightbox class
134                 });
135            
136          $(window).load(function() {
137                 var footer_top = $(document).height() - 30;
138                 $("div#footerbox").attr("style", "border-top: 1px solid #D2D2D2; width: 70%;right: 15%;position: absolute;top:"+footer_top+"px;");
139          });
140          
141          
142         
143         </script>';
144         
145         //check if twitterbox is active and print
146         if($_COOKIE['close_twitter'] != "1") {
147                 $a->page['htmlhead'] .= '
148                 <script>
149                 $(function() {
150                 $("#twitter").twitterSearch({               
151                 term: "friendica",
152                 animInSpeed: 250,
153                 bird:    false, 
154                 avatar:  false, 
155                 colorExterior: "#fff",
156                 title: "Last Tweets",
157                 timeout: 10000          });
158                 });
159                 </script>';}
160                         
161         //check if community_home-plugin is activated and change css
162         $nametocheck = "communityhome";
163         $r = q("select id from addon where name = '%s' and installed = 1", dbesc($nametocheck));
164         if(count($r) == "1") {
165         
166         $a->page['htmlhead'] .= '
167         <script>
168         $(document).ready(function() {
169         $("div#login-submit-wrapper").attr("style","padding-top: 120px;");
170         });
171         </script>';     
172         }
173         //comment-edit-wrapper on photo_view
174         if ($a->argv[0].$a->argv[2] === "photos"."image"){
175         $a->page['htmlhead'] .= '
176         <script>
177                 $(function(){
178                 $(".comment-edit-form").css("display","table");
179                         });
180     </script>';
181         }
182         //restore right hand col at settingspage
183         if($a->argv[0] === "settings" && local_user()) {
184         $a->page['htmlhead'] .= ' 
185         <script>
186         function restore_boxes(){
187         $.cookie("close_pages","2", { expires: 365, path: "/" });
188         $.cookie("close_helpers","2", { expires: 365, path: "/" });
189         $.cookie("close_profiles","2", { expires: 365, path: "/" });
190         $.cookie("close_services","2", { expires: 365, path: "/" });
191         $.cookie("close_friends","2", { expires: 365, path: "/" });
192         $.cookie("close_twitter","2", { expires: 365, path: "/" });
193         $.cookie("close_lastusers","2", { expires: 365, path: "/" });
194         $.cookie("close_lastphotos","2", { expires: 365, path: "/" });
195         $.cookie("close_lastlikes","2", { expires: 365, path: "/" });
196         alert("Right-hand column was restored. Please refresh your browser");
197    }
198         </script>';}
199         
200         if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] or $a->argv[0] === "network" && local_user()){
201         $a->page['htmlhead'] .= '
202         <script>
203
204         $(function() {
205         $(".oembed.photo img").aeImageResize({height: 400, width: 400});
206         });
207         </script>';
208         
209         if($ccCookie != "9") {
210         $a->page['htmlhead'] .= '
211         <script>
212         $("right_aside").ready(function(){
213         
214         if($.cookie("close_pages") == "1") 
215                 {
216                 document.getElementById( "close_pages" ).style.display = "none";
217                         };
218                         
219         if($.cookie("close_profiles") == "1") 
220                 {
221                 document.getElementById( "close_profiles" ).style.display = "none";
222                         };
223         
224         if($.cookie("close_helpers") == "1") 
225                 {
226                 document.getElementById( "close_helpers" ).style.display = "none";
227                         };
228                         
229         if($.cookie("close_services") == "1") 
230                 {
231                 document.getElementById( "close_services" ).style.display = "none";
232                         };
233                         
234         if($.cookie("close_friends") == "1") 
235                 {
236                 document.getElementById( "close_friends" ).style.display = "none";
237                         };
238         
239         if($.cookie("close_twitter") == "1") 
240                 {
241                 document.getElementById( "twitter" ).style.display = "none";
242                         };      
243                         
244         if($.cookie("close_lastusers") == "1") 
245                 {
246                 document.getElementById( "close_lastusers" ).style.display = "none";
247                         };
248                         
249         if($.cookie("close_lastphotos") == "1") 
250                 {
251                 document.getElementById( "close_lastphotos" ).style.display = "none";
252                         };
253                         
254         if($.cookie("close_lastlikes") == "1") 
255                 {
256                 document.getElementById( "close_lastlikes" ).style.display = "none";
257                         };}
258
259         );
260
261         function close_pages(){
262          document.getElementById( "close_pages" ).style.display = "none";
263         $.cookie("close_pages","1", { expires: 365, path: "/" });
264         };
265  
266         function close_profiles(){
267         document.getElementById( "close_profiles" ).style.display = "none";
268         $.cookie("close_profiles","1", { expires: 365, path: "/" });
269         };
270  
271         function close_helpers(){
272         document.getElementById( "close_helpers" ).style.display = "none";
273         $.cookie("close_helpers","1", { expires: 365, path: "/" });
274         };
275
276         function close_services(){
277         document.getElementById( "close_services" ).style.display = "none";
278         $.cookie("close_services","1", { expires: 365, path: "/" });
279         };
280  
281         function close_friends(){
282          document.getElementById( "close_friends" ).style.display = "none";
283          $.cookie("close_friends","1", { expires: 365, path: "/" });
284          };
285  
286         function close_twitter(){
287         document.getElementById( "twitter" ).style.display = "none";
288          $.cookie("close_twitter","1", { expires: 365, path: "/" });
289         };
290  
291         function close_lastusers(){
292          document.getElementById( "close_lastusers" ).style.display = "none";
293         $.cookie("close_lastusers","1", { expires: 365, path: "/" });
294          };
295
296         function close_lastphotos(){
297         document.getElementById( "close_lastphotos" ).style.display = "none";
298          $.cookie("close_lastphotos","1", { expires: 365, path: "/" });
299          };
300  
301         function close_lastlikes(){
302          document.getElementById( "close_lastlikes" ).style.display = "none";
303          $.cookie("close_lastlikes","1", { expires: 365, path: "/" });
304          };
305         </script>';}
306         }
307         //end js scripts
308
309         // custom css
310         if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
311
312         //footer
313         $tpl = get_markup_template('footer.tpl');
314         $a->page['footer'] .= replace_macros($tpl, array());
315         
316         //
317         js_in_foot();
318 }
319
320
321  function diabook_community_info() {
322         $a = get_app();
323         // comunity_profiles
324         if($_COOKIE['close_profiles'] != "1") {
325         $aside['$comunity_profilest_title'] = t('Community Profiles');
326         $aside['$comunity_profiles_items'] = array();
327         $r = q("select gcontact.* from gcontact left join glink on glink.gcid = gcontact.id 
328                           where glink.cid = 0 and glink.uid = 0 order by rand() limit 9");
329         $tpl = file_get_contents( dirname(__file__).'/ch_directory_item.tpl');
330         if(count($r)) {
331                 $photo = 'photo';
332                 foreach($r as $rr) {
333                         $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
334                         $entry = replace_macros($tpl,array(
335                                 '$id' => $rr['id'],
336                                 '$profile-link' => zrl($rr['url']),
337                                 '$photo' => $rr[$photo],
338                                 '$alt-text' => $rr['name'],
339                         ));
340                         $aside['$comunity_profiles_items'][] = $entry;
341                 }
342         }}
343         
344         // last 12 users
345         if($_COOKIE['close_lastusers'] != "1") {
346         $aside['$lastusers_title'] = t('Last users');
347         $aside['$lastusers_items'] = array();
348         $sql_extra = "";
349         $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 " );
350         $order = " ORDER BY `register_date` DESC ";
351
352         $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
353                         FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` 
354                         WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ",
355                 0,
356                 9
357         );
358         $tpl = file_get_contents( dirname(__file__).'/ch_directory_item.tpl');
359         if(count($r)) {
360                 $photo = 'thumb';
361                 foreach($r as $rr) {
362                         $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
363                         $entry = replace_macros($tpl,array(
364                                 '$id' => $rr['id'],
365                                 '$profile-link' => $profile_link,
366                                 '$photo' => $rr[$photo],
367                                 '$alt-text' => $rr['name'],
368                         ));
369                         $aside['$lastusers_items'][] = $entry;
370                 }
371         }}
372         
373         // last 10 liked items
374         if($_COOKIE['close_lastlikes'] != "1") {
375         $aside['$like_title'] = t('Last likes');
376         $aside['$like_items'] = array();
377         $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM 
378                         (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link` 
379                                 FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1
380                         INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri` 
381                         WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%'
382                         GROUP BY `uri`
383                         ORDER BY `T1`.`created` DESC
384                         LIMIT 0,5",
385                         $a->get_baseurl(),$a->get_baseurl()
386                         );
387
388         foreach ($r as $rr) {
389                 $author  = '<a href="' . $rr['liker-link'] . '">' . $rr['liker'] . '</a>';
390                 $objauthor =  '<a href="' . $rr['author-link'] . '">' . $rr['author-name'] . '</a>';
391                 
392                 //var_dump($rr['verb'],$rr['object-type']); killme();
393                 switch($rr['verb']){
394                         case 'http://activitystrea.ms/schema/1.0/post':
395                                 switch ($rr['object-type']){
396                                         case 'http://activitystrea.ms/schema/1.0/event':
397                                                 $post_type = t('event');
398                                                 break;
399                                         default:
400                                                 $post_type = t('status');
401                                 }
402                                 break;
403                         default:
404                                 if ($rr['resource-id']){
405                                         $post_type = t('photo');
406                                         $m=array();     preg_match("/\[url=([^]]*)\]/", $rr['body'], $m);
407                                         $rr['plink'] = $m[1];
408                                 } else {
409                                         $post_type = t('status');
410                                 }
411                 }
412                 $plink = '<a href="' . $rr['plink'] . '">' . $post_type . '</a>';
413
414                 $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
415                 
416         }}
417         
418         // last 12 photos
419         if($_COOKIE['close_photos'] != "1") {
420         $aside['$photos_title'] = t('Last photos');
421         $aside['$photos_items'] = array();
422         $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM 
423                                 (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo` 
424                                         WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s')
425                                                 AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1`
426                                 INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`,
427                                 `user` 
428                                 WHERE `user`.`uid` = `photo`.`uid`
429                                 AND `user`.`blockwall`=0
430                                 AND `user`.`hidewall`=0
431                                 ORDER BY `photo`.`edited` DESC
432                                 LIMIT 0, 9",
433                                 dbesc(t('Contact Photos')),
434                                 dbesc(t('Profile Photos'))
435                                 );
436                 if(count($r)) {
437                 $tpl = file_get_contents( dirname(__file__).'/ch_directory_item.tpl');
438                 foreach($r as $rr) {
439                         $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id'];
440                         $photo_url = $a->get_baseurl() . '/photo/' .  $rr['resource-id'] . '-' . $rr['scale'] .'.jpg';
441                 
442                         $entry = replace_macros($tpl,array(
443                                 '$id' => $rr['id'],
444                                 '$profile-link' => $photo_page,
445                                 '$photo' => $photo_url,
446                                 '$alt-text' => $rr['username']." : ".$rr['desc'],
447                         ));
448
449                         $aside['$photos_items'][] = $entry;
450                 }
451         }}
452         
453    //right_aside FIND FRIENDS
454    if($_COOKIE['close_friends'] != "1") {
455         if(local_user()) {
456         $nv = array();
457         $nv['title'] = Array("", t('Find Friends'), "", "");
458         $nv['directory'] = Array('directory', t('Local Directory'), "", "");
459         $nv['global_directory'] = Array('http://dir.friendica.com/', t('Global Directory'), "", "");
460         $nv['match'] = Array('match', t('Similar Interests'), "", "");
461         $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", "");
462         $nv['invite'] = Array('invite', t('Invite Friends'), "", "");
463         
464         $nv['search'] = '<form name="simple_bar" method="get" action="http://dir.friendika.com/directory">
465                                                 <span class="sbox_l"></span>
466                                                 <span class="sbox">
467                                                 <input type="text" name="search" size="13" maxlength="50">
468                                                 </span>
469                                                 <span class="sbox_r" id="srch_clear"></span>';
470         
471         $aside['$nv'] = $nv;
472         }}
473    
474    //Community_Pages at right_aside
475    if($_COOKIE['close_pages'] != "1") {
476    if(local_user()) {
477    $page = '
478                         <h3 style="margin-top:0px;">'.t("Community Pages").'<a id="close_pages_icon"  onClick="close_pages()" class="icon close_box" title="close"></a></h3></div>
479                         <div id=""><ul style="margin-left: 7px;margin-top: 0px;padding-left: 0px;padding-top: 0px;">';
480
481         $pagelist = array();
482
483         $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact`
484                         WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d
485                         ORDER BY `name` ASC",
486                         intval($a->user['uid'])
487         );
488
489         $pageD = array();
490
491         // Look if the profile is a community page
492         foreach($contacts as $contact) {
493                 $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
494         };
495         
496
497         $contacts = $pageD;
498
499         foreach($contacts as $contact) {
500                 $page .= '<li style="list-style-type: none;" class="tool"><img height="20" width="20" style="float: left; margin-right: 3px;" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" style="margin-top: 2px; word-wrap: break-word; width: 132px;" title="' . $contact['url'] . '" class="label" target="external-link">'.
501                                 $contact["name"]."</a></li>";
502         }
503         $page .= '</ul></div>';
504         //if (sizeof($contacts) > 0)
505                 $aside['$page'] = $page;        
506         }}
507   //END Community Page  
508   
509   //helpers
510   if($_COOKIE['close_helpers'] != "1") {
511    $helpers = array();
512         $helpers['title'] = Array("", t('Help or @NewHere ?'), "", "");
513         $aside['$helpers'] = $helpers;
514         }
515    //end helpers
516    //connectable services
517    if($_COOKIE['close_services'] != "1") {
518    $con_services = array();
519         $con_services['title'] = Array("", t('Connect Services'), "", "");
520         $aside['$con_services'] = $con_services;
521         }
522    //end connectable services
523    //get_baseurl
524    $url = $a->get_baseurl($ssl_state);   
525    $aside['$url'] = $url;
526         //print right_aside
527         $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl');
528         $a->page['right_aside'] = replace_macros($tpl, $aside);
529         
530  }
531
532  function js_in_foot() {
533         /** @purpose insert stuff in bottom of page
534          */
535         $a = get_app();
536         $baseurl = $a->get_baseurl($ssl_state);
537         $bottom['$baseurl'] = $baseurl;
538         $tpl = file_get_contents(dirname(__file__) . '/bottom.tpl');
539         $a->page['footer'] = $a->page['footer'].replace_macros($tpl, $bottom);
540  }
541
542
543
544
545
546
547
548  
549  
550
551  
552