]> git.mxchange.org Git - friendica.git/blob - view/theme/frost-mobile/theme.php
c295a91a6545dbe150a22c8dc60abc8a6d57d456
[friendica.git] / view / theme / frost-mobile / theme.php
1 <?php
2
3 /*
4  * Name: Frost--mobile version
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.2.16
8  * Author: Zach P <techcity@f.shmuz.in>
9  * Maintainer: Zach P <techcity@f.shmuz.in>
10  */
11
12 $a->theme_info = array();
13 $a->sourcename = 'Friendica mobile web';
14 $a->videowidth = 250;
15 $a->videoheight = 200;
16 $a->theme_thread_allow = false;
17 $a->force_max_items = 10;
18
19 function frost_mobile_content_loaded(&$a) {
20
21         // I could do this in style.php, but by having the CSS in a file the browser will cache it,
22         // making pages load faster
23         if( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
24 //              $a->page['htmlhead'] = str_replace('$stylesheet', $a->get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
25                 $a->theme['stylesheet'] = $a->get_baseurl() . '/view/theme/frost-mobile/login-style.css';
26         }
27         if( $a->module === 'login' )
28                 $a->page['end'] .= '<script type="text/javascript"> $j(document).ready(function() { $j("#id_" + window.loginName).focus();} );</script>';
29
30 }