File size: 1.06Kb
<?php
/*
Работа с дизайном
Автор: Denvas
*/
//шаблон
global $template;
//==================================================//
/*
Инициализация шаблонов
*/
function InitDesign($name,$wapver){
global $template;
$content=file("template/".$name.$wapver.".txt");
for($j=0;$j<count($content);$j++){
$line=trim($content[$j]);
if(empty($line))continue;
$pos=strpos($line,"=");
if($pos===false)continue;
$name=substr($line,0,$pos);
$value=substr($line,$pos+1);
$template[$name]=$value;
};
};
//==================================================//
/*
простой дизайн. более сложные реализуются индивидуально
*/
function design($str,$tpl="title"){
global $template;
if(!$str)return "";
return strtr(isset($template[$tpl])?$template[$tpl]:$template["span"],array("\$class\$"=>$tpl,"\$code\$"=>$str));
};
//==================================================//
?>