]> git.mxchange.org Git - friendica.git/blob - view/theme/frost/theme.php
3decb2a11857331562c4ffff312a5c54ea2cd46e
[friendica.git] / view / theme / frost / theme.php
1 <?php
2
3 /*
4  * Name: Frost
5  * Description: Like frosted glass
6  * Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
7  * Version: Version 0.4
8  * Author: Zach P <techcity@f.shmuz.in>
9  * Maintainer: Zach P <techcity@f.shmuz.in>
10  */
11
12 function frost_init(&$a) {
13         $a->theme_info = array();
14         $a->videowidth = 400;
15         $a->videoheight = 330;
16         $a->theme_thread_allow = false;
17         set_template_engine($a, 'smarty3');
18 }
19
20 function frost_content_loaded(&$a) {
21
22         // I could do this in style.php, but by having the CSS in a file the browser will cache it,
23         // making pages load faster
24         if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
25                 //$a->page['htmlhead'] = str_replace('$stylesheet', $a->get_baseurl() . '/view/theme/frost/login-style.css', $a->page['htmlhead']);
26                 $a->theme['stylesheet'] = $a->get_baseurl() . '/view/theme/frost/login-style.css';
27         }
28         if( $a->module === 'login' )
29                 $a->page['end'] .= '<script type="text/javascript"> $j(document).ready(function() { $j("#id_" + window.loginName).focus();} );</script>';
30
31 }
32
33 function frost_install() {
34         register_hook('prepare_body_final', 'view/theme/frost/theme.php', 'frost_item_photo_links');
35
36         logger("installed theme frost");
37 }
38
39 function frost_uninstall() {
40         unregister_hook('bbcode', 'view/theme/frost/theme.php', 'frost_bbcode');
41
42         logger("uninstalled theme frost");
43 }
44
45 function frost_item_photo_links(&$a, &$body_info) {
46         require_once('include/Photo.php');
47         $phototypes = Photo::supportedTypes();
48
49         $occurence = 1;
50         $p = bb_find_open_close($body_info['html'], "<a", ">");
51         while($p !== false && ($occurence++ < 500)) {
52                 $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
53
54                 $matches = array();
55                 preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches);
56                 if($matches) {
57
58                         // Replace the link for the photo's page with a direct link to the photo itself
59                         $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link);
60
61                         // Add a "quiet" parameter to any redir links to prevent the "XX welcomes YY" info boxes
62                         $newlink = preg_replace("/href=\"([^\"]+)\/redir\/([^\"]+)&url=([^\"]+)\"/", 'href="$1/redir/$2&quiet=1&url=$3"', $newlink);
63
64                          // Having any arguments to the link for Colorbox causes it to fetch base64 code instead of the image
65                         $newlink = preg_replace("/\/[?&]zrl=([^&\"]+)/", '', $newlink);
66
67                         $body_info['html'] = str_replace($link, $newlink, $body_info['html']);
68
69                 }
70                 
71                 $p = bb_find_open_close($body_info['html'], "<a", ">", $occurence);
72         }
73 }
74