]> git.mxchange.org Git - friendica.git/blob - view/theme/frost-mobile/theme.php
Merge remote-tracking branch 'upstream/develop' into 1702-null-date
[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.3
8  * Author: Zach P <techcity@f.shmuz.in>
9  * Maintainer: Zach P <techcity@f.shmuz.in>
10  */
11
12 function frost_mobile_init(App $a) {
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         set_template_engine($a, 'smarty3');
19 }
20
21 function frost_mobile_content_loaded(App $a) {
22
23         // I could do this in style.php, but by having the CSS in a file the browser will cache it,
24         // making pages load faster
25         if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
26 //              $a->page['htmlhead'] = str_replace('$stylesheet', App::get_baseurl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
27                 $a->theme['stylesheet'] = App::get_baseurl() . '/view/theme/frost-mobile/login-style.css';
28         }
29
30         if ( $a->module === 'login' ) {
31                 $a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
32         }
33
34 }