]> git.mxchange.org Git - friendica.git/blob - view/theme/vier/theme.php
Issue 1157: Unused javascript function is removed.
[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 type="text/javascript">
34
35 function insertFormatting(comment,BBcode,id) {
36
37                 var tmpStr = $("#comment-edit-text-" + id).val();
38                 if(tmpStr == comment) {
39                         tmpStr = "";
40                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
41                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
42                         openMenu("comment-edit-submit-wrapper-" + id);
43                         $("#comment-edit-text-" + id).val(tmpStr);
44                 }
45
46         textarea = document.getElementById("comment-edit-text-" +id);
47         if (document.selection) {
48                 textarea.focus();
49                 selected = document.selection.createRange();
50                 if (BBcode == "url"){
51                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
52                         } else
53                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
54         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
55                 var start = textarea.selectionStart;
56                 var end = textarea.selectionEnd;
57                 if (BBcode == "url"){
58                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
59                         } else
60                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
61         }
62         return true;
63 }
64
65
66 function showThread(id) {
67         $("#collapsed-comments-" + id).show()
68         $("#collapsed-comments-" + id + " .collapsed-comments").show()
69 }
70 function hideThread(id) {
71         $("#collapsed-comments-" + id).hide()
72         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
73 }
74
75
76 function cmtBbOpen(id) {
77         $("#comment-edit-bb-" + id).show();
78 }
79 function cmtBbClose(id) {
80         $("#comment-edit-bb-" + id).hide();
81 }
82 </script>
83 EOT;
84 }
85