68b3ad7100b7496fe14bdb73a98cd0843209bda4
[friendica.git/.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 use Friendica\App;
13 use Friendica\Core\System;
14
15 function frost_mobile_init(App $a) {
16         $a->sourcename = 'Friendica mobile web';
17         $a->videowidth = 250;
18         $a->videoheight = 200;
19         $a->force_max_items = 10;
20         $a->set_template_engine('smarty3');
21 }
22
23 function frost_mobile_content_loaded(App $a) {
24
25         // I could do this in style.php, but by having the CSS in a file the browser will cache it,
26         // making pages load faster
27         if ( $a->module === 'home' || $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
28 //              $a->page['htmlhead'] = str_replace('$stylesheet', System::baseUrl() . '/view/theme/frost-mobile/login-style.css', $a->page['htmlhead']);
29                 $a->theme['stylesheet'] = System::baseUrl() . '/view/theme/frost-mobile/login-style.css';
30         }
31
32         if ( $a->module === 'login' ) {
33                 $a->page['end'] .= '<script type="text/javascript"> $(document).ready(function() { $("#id_" + window.loginName).focus();} );</script>';
34         }
35
36 }