30 lines
669 B
PHP
30 lines
669 B
PHP
<?php
|
|
|
|
/*
|
|
* Name: Dispy Dark
|
|
* Description: Dispy Dark: Dark, Spartan, Sleek, and Functional
|
|
* Author: Simon <http://simon.kisikew.org/>
|
|
* Maintainer: Simon <http://simon.kisikew.org/>
|
|
* Screenshot: <a href="screenshot.jpg">Screenshot</a>
|
|
*/
|
|
|
|
function dispy_dark_init(&$a) {
|
|
$a->theme_info = array(
|
|
'family' => 'dispy',
|
|
'name' => 'dark',
|
|
);
|
|
set_template_engine($a, 'smarty3');
|
|
|
|
/** @purpose set some theme defaults
|
|
*/
|
|
$cssFile = null;
|
|
$colour = 'dark';
|
|
$colour_path = "/dark/";
|
|
|
|
// set css
|
|
if (!is_null($cssFile)) {
|
|
$a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
|
}
|
|
}
|
|
|