]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
bug fix #1115
[friendica.git] / view / theme / vier / theme.php
1 <?php
2 /**
3  * Name: Vier
4  * Version: 1.1
5  * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
6  * Author: Ike <http://pirati.ca/profile/heluecht>
7  * Maintainer: Ike <http://pirati.ca/profile/heluecht>
8  * Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/
9  */
10
11 function vier_init(&$a) {
12 set_template_engine($a, 'smarty3');
13
14 $baseurl = $a->get_baseurl();
15
16 $a->theme_info = array();
17
18 $style = get_pconfig(local_user(), 'vier', 'style');
19
20 if ($style == "")
21         $style = get_config('vier', 'style');
22
23 if ($style == "flat")
24         $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/flat.css" type="text/css" media="screen"/>'."\n";
25 else if ($style == "netcolour")
26         $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/netcolour.css" type="text/css" media="screen"/>'."\n";
27 else if ($style == "breathe")
28         $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/breathe.css" type="text/css" media="screen"/>'."\n";
29 else if ($style == "plus")
30         $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/plus.css" type="text/css" media="screen"/>'."\n";
31
32 $a->page['htmlhead'] .= <<< EOT
33 <script>
34
35 function collapseHeight(elems) {
36         var elemName = '.wall-item-body:not(.divmore)';
37         if(typeof elems != 'undefined') {
38                 elemName = elems + ' ' + elemName;
39         }
40         $(elemName).each(function() {
41                 if($(this).height() > 450) {
42                         $('html').height($('html').height());
43                         $(this).divgrow({ initialHeight: 400, showBrackets: false, speed: 0 });
44                         $(this).addClass('divmore');
45                         $('html').height('auto');
46                 }
47         });
48 }
49
50 function insertFormatting(comment,BBcode,id) {
51
52                 var tmpStr = $("#comment-edit-text-" + id).val();
53                 if(tmpStr == comment) {
54                         tmpStr = "";
55                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
56                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
57                         openMenu("comment-edit-submit-wrapper-" + id);
58                         $("#comment-edit-text-" + id).val(tmpStr);
59                 }
60
61         textarea = document.getElementById("comment-edit-text-" +id);
62         if (document.selection) {
63                 textarea.focus();
64                 selected = document.selection.createRange();
65                 if (BBcode == "url"){
66                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
67                         } else
68                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
69         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
70                 var start = textarea.selectionStart;
71                 var end = textarea.selectionEnd;
72                 if (BBcode == "url"){
73                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
74                         } else
75                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
76         }
77         return true;
78 }
79
80
81 function showThread(id) {
82         $("#collapsed-comments-" + id).show()
83         $("#collapsed-comments-" + id + " .collapsed-comments").show()
84 }
85 function hideThread(id) {
86         $("#collapsed-comments-" + id).hide()
87         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
88 }
89
90
91 function cmtBbOpen(id) {
92         $("#comment-edit-bb-" + id).show();
93 }
94 function cmtBbClose(id) {
95         $("#comment-edit-bb-" + id).hide();
96 }
97 </script>
98 EOT;
99 }
100