$content) { $template = str_replace("%" . $name . "%", $content, $template); } return $template; } else { die('Cannot find template file «' . $file . '».'); } } function shorten($str) { if (strlen($str) < 50) return $str; return substr($str, 0, 47) . '...'; } function table_body($array) { $html = ""; foreach ($array as $line) { $html .= ""; if (is_array($line)) { foreach ($line as $td) $html .= "" . $td . ""; } else { $html .= "" . $line . ""; } $html .= ""; } return $html; } function html_options($name, $options, $selected = "") { $html = ""; foreach ($options as $value => $label) $html .= ' ' . $label; return $html; } function html_select_key($name, $rows, $selected) { $html = ''; return $html; } ?>