Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 237 → Редакция 238

/trunk/lib/theme.php
Новый файл
0,0 → 1,46
<?php
 
/**
* Project: Ant: sources.list generator
* File: theme.php
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
 
class Theme {
 
function getThemesList() {
$result = array();
$handler = opendir('./themes/');
while ($file = readdir($handler)) {
if ($file != '.' && $file != '..' && $file != '.svn') // && is_dir($file)
if (file_exists('./themes/'.$file.'/style.css')) $result[] = $file;
}
closedir($handler);
return($result);
}
function getThemeName($link,$dblink) { //TODO remove links
$result=$link->getSetting('theme',$dblink);
if (!file_exists('./themes/'.$result.'/style.css')) $result='default';
return $result;
}
function setTheme($newtheme,$dblink){
$req =& $dblink->query("UPDATE settings SET optvalue='$newtheme' WHERE opt='theme'");
}
}
?>
/trunk/lib/init.php
26,6 → 26,7
require dirname(__FILE__)."/Smarty.class.php";
require dirname(__FILE__)."/core.php";
require dirname(__FILE__)."/security.php";
require dirname(__FILE__)."/theme.php";
 
$dsn = "mysql://".$DBuser.":".$DBpass."@".$DBhost."/".$DBname;
$options = array(
42,7 → 43,7
 
$core = new Core;
$secure = new Security;
 
$theme = new Theme;
$smarty = new Smarty;
$smarty->compile_check = true;