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