]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/dark/theme.php
Accidentally removed a file
[friendica.git] / view / theme / dispy / dark / theme.php
1 <?php
2
3 /*
4  * Name: Dispy Dark
5  * Description: Dispy Dark: Dark, Spartan, Sleek, and Functional
6  * Author: Simon <http://simon.kisikew.org/>
7  * Maintainer: Simon <http://simon.kisikew.org/>
8  * Screenshot: <a href="screenshot.jpg">Screenshot</a>
9  */
10
11 function dispy_dark_init(&$a) {
12         $a->theme_info = array(
13                 'family' => 'dispy',
14                 'name' => 'dark',
15         );
16         set_template_engine($a, 'smarty3');
17
18     /** @purpose set some theme defaults
19     */
20     $cssFile = null;
21     $colour = 'dark';
22         $colour_path = "/dark/";
23
24     // set css
25     if (!is_null($cssFile)) {
26         $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
27     }
28 }
29