<?php $attr1_class='main'; ?><?php
if (!headers_sent()) header('Content-Type: text/html; charset='.$charset)
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title><?php echo isset($attr1_title)?$attr1_title.' - ':(isset($windowTitle)?langHtml($windowTitle).' - ':'') ?><?php echo $cms_title ?></title>
<meta http-equiv="content-type" content="text/html; charset=<?php echo $charset ?>" >
<meta name="MSSmartTagsPreventParsing" content="true" >
<meta name="robots" content="noindex,nofollow" >
<?php if (isset($windowMenu) && is_array($windowMenu)) foreach( $windowMenu as $menu )
{
?>
<link rel="section" href="<?php echo Html::url($actionName,@$menu['subaction'],$this->getRequestId() ) ?>" title="<?php echo lang($menu['text']) ?>" >
<?php
}
?><?php if (isset($metaList) && is_array($metaList)) foreach( $metaList as $meta )
{
?>
<link rel="<?php echo $meta['name'] ?>" href="<?php echo $meta['url'] ?>" title="<?php echo lang($meta['title']) ?>" ><?php
}
?><?php if(!empty($root_stylesheet)) { ?>
<link rel="stylesheet" type="text/css" href="<?php echo $root_stylesheet ?>" >
<?php } ?>
<?php if($root_stylesheet!=$user_stylesheet) { ?>
<link rel="stylesheet" type="text/css" href="<?php echo $user_stylesheet ?>" >
<?php } ?>
</head>
<body class="<?php echo $attr1_class ?>" <?php if (@$conf['interface']['application_mode']) { ?> style="padding:0px;margin:0px;"<?php } ?> >
<?php /* Debug-Information */ if ($showDuration) { echo "<!--\n";print_r($this->templateVars);echo "\n-->";} ?><?php unset($attr1_class); ?><?php $attr2_widths='75%,25%'; $attr2_width='93%'; $attr2_rowclasses='odd,even'; $attr2_columnclasses='1,2,3'; ?><?php
$coloumn_widths=array();
if (!empty($attr2_widths))
{
$column_widths = explode(',',$attr2_widths);
unset($attr2['widths']);
}
if (!empty($attr2_rowclasses))
{
$row_classes = explode(',',$attr2_rowclasses);
$row_class_idx = 999;
unset($attr2['rowclasses']);
}
if (!empty($attr2_columnclasses))
{
$column_classes = explode(',',$attr2_columnclasses);
unset($attr2['columnclasses']);
}
global $image_dir;
if (@$conf['interface']['application_mode'] )
{
echo '<table class="main" cellspacing="0" cellpadding="4" width="100%" style="margin:0px;border:0px; padding:0px;" height_oo="100%">';
}
else
{
echo '<br/><br/><br/><center>';
echo '<table class="main" cellspacing="0" cellpadding="4" width="'.$attr2_width.'">';
}
if (!@$conf['interface']['application_mode'] )
{
echo '<tr><td class="menu">';
echo '<img src="'.$image_dir.'icon_'.$actionName.IMG_ICON_EXT.'" align="left" border="0">';
if ($this->isEditable()) { ?>
<?php if ($this->isEditMode()) {
?><a href="<?php echo Html::url($actionName,$subActionName,$this->getRequestId() ) ?>" accesskey="1" title="<?php echo langHtml('MODE_EDIT_DESC') ?>" class="path" style="text-align:right;font-weight:bold;font-weight:bold;"><img src="<?php echo $image_dir ?>mode-edit.png" style="vertical-align:top; " border="0" /></a> <?php } else {
?><a href="<?php echo Html::url($actionName,$subActionName,$this->getRequestId(),array('mode'=>'edit') ) ?>" accesskey="1" title="<?php echo langHtml('MODE_SHOW_DESC') ?>" class="path" style="text-align:right;font-weight:bold;font-weight:bold;"><img src="<?php echo $image_dir ?>readonly.png" style="vertical-align:top; " border="0" /></a> <?php }
?><?php }
echo '<span class="path">'.langHtml('GLOBAL_'.$actionName).'</span> <strong>»</strong> ';
if ( !isset($path) || is_array($path) )
$path = array();
foreach( $path as $pathElement)
{
extract($pathElement);
echo '<a href="'.$url.'" class="path">'.langHtml($name).'</a>';
echo ' » ';
}
echo '<span class="title">'.langHtml($windowTitle).'</span>';
?>
</td>
<?php
}
?>
<?php ?> <!--<td class="menu" style="align:right;">
<?php if (isset($windowIcons)) foreach( $windowIcons as $icon )
{
?><a href="<?php echo $icon['url'] ?>" title="<?php echo 'ICON_'.langHtml($menu['type'].'_DESC') ?>"><image border="0" src="<?php echo $image_dir.$icon['type'].IMG_ICON_EXT ?>"></a> <?php
}
?>
</td>-->
</tr>
<tr><td class="subaction">
<?php if ( !isset($windowMenu) || !is_array($windowMenu) )
$windowMenu = array();
foreach( $windowMenu as $menu )
{
$tmp_text = langHtml($menu['text']);
$tmp_key = strtoupper(langHtml($menu['key' ]));
$tmp_pos = strpos(strtolower($tmp_text),strtolower($tmp_key));
if ( $tmp_pos !== false )
$tmp_text = substr($tmp_text,0,max($tmp_pos,0)).'<span class="accesskey">'. substr($tmp_text,$tmp_pos,1).'</span>'.substr($tmp_text,$tmp_pos+1);
if ( isset($menu['url']) )
{
?><a href="<?php echo Html::url($actionName,$menu['subaction'],$this->getRequestId() ) ?>" accesskey="<?php echo $tmp_key ?>" title="<?php echo langHtml($menu['text'].'_DESC') ?>" class="menu<?php echo $this->subActionName==$menu['subaction']?'_highlight':'' ?>"><?php echo $tmp_text ?></a> <?php
}
else
{
?><span class="menu_disabled" title="<?php echo langHtml($menu['text'].'_DESC') ?>" class="menu_disabled"><?php echo $tmp_text ?></span> <?php
}
}
if (@$conf['help']['enabled'] )
{
?><a href="<?php echo $conf['help']['url'].$actionName.'/'.$subActionName.@$conf['help']['suffix'] ?> " target="_new" title="<?php echo langHtml('MENU_HELP_DESC') ?>" class="menu" style="cursor:help;"><?php echo @$conf['help']['only_question_mark']?'?':langHtml('MENU_HELP') ?></a><?php
}
?></td>
</tr>
<?php if (isset($notices) && count($notices)>0 )
{ ?>
<tr>
<td align="center" class="notice">
<?php foreach( $notices as $notice_idx=>$notice ) { ?>
<br><table class="notice" width="80%">
<?php if ($notice['name']!='') { ?>
<tr>
<th colspan="2"><img src="<?php echo $image_dir.'icon_'.$notice['type'].IMG_ICON_EXT ?>" align="left" /><?php echo $notice['name'] ?>
</th>
</tr>
<?php } ?>
<tr class="<?php echo $notice['status'] ?>">
<td style="padding:10px;" width="30px"><img src="<?php echo $image_dir.'notice_'.$notice['status'].IMG_ICON_EXT ?>" style="padding:10px" /></td>
<td style="padding:10px;padding-right:10px;padding-bottom:10px;"><?php if ($notice['status']=='error') { ?><strong><?php } ?><?php echo langHtml($notice['key'],$notice['vars']) ?><?php if ($notice['status']=='error') { ?></strong><?php } ?>
<?php if (!empty($notice['log'])) { ?><pre><?php echo htmlentities(implode("\n",$notice['log'])) ?></pre><?php } ?>
</td>
</tr>
</table>
<?php } ?>
</td>
</tr>
<tr>
<td colspan="2"><fieldset></fieldset></td>
</tr>
<?php } ?>
<tr>
<td class="window">
<table cellspacing="0" width="100%" cellpadding="4">
<?php unset($attr2_widths);unset($attr2_width);unset($attr2_rowclasses);unset($attr2_columnclasses); ?><?php $attr3_present='up_url'; ?><?php
$attr3_tmp_exec = isset($$attr3_present);
$attr3_tmp_last_exec = $attr3_tmp_exec;
if ( $attr3_tmp_exec )
{
?>
<?php unset($attr3_present); ?><?php ?><?php
$attr4_tmp_class='';
$attr4_last_class = $attr4_tmp_class;
echo Html::open_tag('tr',array('class'=>$attr4_tmp_class));
?><?php ?><?php $attr5_width='50%'; $attr5_colspan='8'; ?><?php
$column_class_idx++;
if ($column_class_idx > count($column_classes))
$column_class_idx=1;
$column_class=$column_classes[$column_class_idx-1];
if (empty($attr5_class))
$attr5_class=$column_class;
global $cell_column_nr;
$cell_column_nr++;
if ( isset($column_widths[$cell_column_nr-1]) && !isset($attr5_rowspan) )
$attr5_width=$column_widths[$cell_column_nr-1];
?><td<?php
?> width="<?php echo $attr5_width ?>"<?php
?> colspan="<?php echo $attr5_colspan ?>" <?php
?>><?php unset($attr5_width);unset($attr5_colspan); ?><?php $attr6_title=''; $attr6_target='cms_main'; $attr6_url=$up_url; $attr6_class=''; ?><?php
$params = array();
$tmp_url = $attr6_url;
?><a<?php if (isset($attr6_name)) echo ' name="'.$attr6_name.'"'; else echo ' href="'.$tmp_url.($attr6_anchor?'#'.$attr6_anchor:'').'"' ?> class="<?php echo $attr6_class ?>" target="<?php echo $attr6_target ?>"<?php if (isset($attr6_accesskey)) echo ' accesskey="'.$attr6_accesskey.'"' ?> title="<?php echo encodeHtml($attr6_title) ?>"><?php unset($attr6_title);unset($attr6_target);unset($attr6_url);unset($attr6_class); ?><?php $attr7_align='left'; $attr7_type='folder'; ?><?php
$attr7_tmp_image_file = $image_dir.'icon_'.$attr7_type.IMG_ICON_EXT;
$attr7_size = '16x16';
?><img alt="<?php echo basename($attr7_tmp_image_file); echo ' ('; if (isset($attr7_size)) { list($attr7_tmp_width,$attr7_tmp_height)=explode('x',$attr7_size);echo $attr7_tmp_width.'x'.$attr7_tmp_height; echo')';} ?>" src="<?php echo $attr7_tmp_image_file ?>" border="0"<?php if(isset($attr7_align)) echo ' align="'.$attr7_align.'"' ?><?php if (isset($attr7_size)) { list($attr7_tmp_width,$attr7_tmp_height)=explode('x',$attr7_size);echo ' width="'.$attr7_tmp_width.'" height="'.$attr7_tmp_height.'"';} ?>><?php unset($attr7_align);unset($attr7_type); ?><?php $attr7_class='text'; $attr7_raw='__.._____________'; $attr7_escape=true; ?><?php
$attr7_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr7_class ?>" title="<?php echo $attr7_title ?>"><?php
$langF = $attr7_escape?'langHtml':'lang';
$tmp_text = str_replace('_',' ',$attr7_raw);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr7_class);unset($attr7_raw);unset($attr7_escape); ?><?php ?></a><?php ?><?php ?></td><?php ?><?php ?></tr><?php ?><?php ?><?php } ?><?php ?><?php $attr3_class='headline'; ?><?php
$attr3_tmp_class='';
$attr3_tmp_class_list = explode(',',$attr3_classes);
$last_pos = array_search($attr3_last_class,$attr3_tmp_class_list);
if ( $last_pos === FALSE || $last_pos == count($attr3_tmp_class_list)-1)
$attr3_tmp_class = $attr3_tmp_class_list[0];
else
$attr3_tmp_class = $attr3_tmp_class_list[++$last_pos];
$attr3_tmp_class=$attr3_class;
$attr3_last_class = $attr3_tmp_class;
echo Html::open_tag('tr',array('class'=>$attr3_tmp_class));
?><?php unset($attr3_class); ?><?php $attr4_class='help'; ?><?php
$column_class_idx++;
if ($column_class_idx > count($column_classes))
$column_class_idx=1;
$column_class=$column_classes[$column_class_idx-1];
if (empty($attr4_class))
$attr4_class=$column_class;
global $cell_column_nr;
$cell_column_nr++;
if ( isset($column_widths[$cell_column_nr-1]) && !isset($attr4_rowspan) )
$attr4_width=$column_widths[$cell_column_nr-1];
?><td<?php
?> class="<?php echo $attr4_class ?>" <?php
?>><?php unset($attr4_class); ?><?php $attr5_class='text'; $attr5_key='GLOBAL_TYPE'; $attr5_escape=true; ?><?php
$attr5_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr5_class ?>" title="<?php echo $attr5_title ?>"><?php
$langF = $attr5_escape?'langHtml':'lang';
$tmp_text = $langF($attr5_key);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr5_class);unset($attr5_key);unset($attr5_escape); ?><?php $attr5_class='text'; $attr5_raw='_/_'; $attr5_escape=true; ?><?php
$attr5_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr5_class ?>" title="<?php echo $attr5_title ?>"><?php
$langF = $attr5_escape?'langHtml':'lang';
$tmp_text = str_replace('_',' ',$attr5_raw);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr5_class);unset($attr5_raw);unset($attr5_escape); ?><?php $attr5_class='text'; $attr5_key='GLOBAL_NAME'; $attr5_escape=true; ?><?php
$attr5_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr5_class ?>" title="<?php echo $attr5_title ?>"><?php
$langF = $attr5_escape?'langHtml':'lang';
$tmp_text = $langF($attr5_key);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr5_class);unset($attr5_key);unset($attr5_escape); ?><?php ?></td><?php ?><?php $attr4_class='help'; ?><?php
$column_class_idx++;
if ($column_class_idx > count($column_classes))
$column_class_idx=1;
$column_class=$column_classes[$column_class_idx-1];
if (empty($attr4_class))
$attr4_class=$column_class;
global $cell_column_nr;
$cell_column_nr++;
if ( isset($column_widths[$cell_column_nr-1]) && !isset($attr4_rowspan) )
$attr4_width=$column_widths[$cell_column_nr-1];
?><td<?php
?> class="<?php echo $attr4_class ?>" <?php
?>><?php unset($attr4_class); ?><?php $attr5_class='text'; $attr5_key='GLOBAL_LASTCHANGE'; $attr5_escape=true; ?><?php
$attr5_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr5_class ?>" title="<?php echo $attr5_title ?>"><?php
$langF = $attr5_escape?'langHtml':'lang';
$tmp_text = $langF($attr5_key);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr5_class);unset($attr5_key);unset($attr5_escape); ?><?php ?></td><?php ?><?php ?></tr><?php ?><?php $attr3_list='object'; $attr3_extract=true; $attr3_key='list_key'; $attr3_value='list_value'; ?><?php
$attr3_list_tmp_key = $attr3_key;
$attr3_list_tmp_value = $attr3_value;
$attr3_list_extract = $attr3_extract;
unset($attr3_key);
unset($attr3_value);
if ( !isset($$attr3_list) || !is_array($$attr3_list) )
$$attr3_list = array();
foreach( $$attr3_list as $$attr3_list_tmp_key => $$attr3_list_tmp_value )
{
if ( $attr3_list_extract )
{
if ( !is_array($$attr3_list_tmp_value) )
{
print_r($$attr3_list_tmp_value);
die( 'not an array at key: '.$$attr3_list_tmp_key );
}
extract($$attr3_list_tmp_value);
}
?><?php unset($attr3_list);unset($attr3_extract);unset($attr3_key);unset($attr3_value); ?><?php $attr4_class='data'; ?><?php
$attr4_tmp_class='';
$attr4_tmp_class_list = explode(',',$attr4_classes);
$last_pos = array_search($attr4_last_class,$attr4_tmp_class_list);
if ( $last_pos === FALSE || $last_pos == count($attr4_tmp_class_list)-1)
$attr4_tmp_class = $attr4_tmp_class_list[0];
else
$attr4_tmp_class = $attr4_tmp_class_list[++$last_pos];
$attr4_tmp_class=$attr4_class;
$attr4_last_class = $attr4_tmp_class;
echo Html::open_tag('tr',array('class'=>$attr4_tmp_class));
?><?php unset($attr4_class); ?><?php ?><?php
$column_class_idx++;
if ($column_class_idx > count($column_classes))
$column_class_idx=1;
$column_class=$column_classes[$column_class_idx-1];
if (empty($attr5_class))
$attr5_class=$column_class;
global $cell_column_nr;
$cell_column_nr++;
if ( isset($column_widths[$cell_column_nr-1]) && !isset($attr5_rowspan) )
$attr5_width=$column_widths[$cell_column_nr-1];
?><td<?php
?>><?php ?><?php $attr6_title=$desc; $attr6_target='cms_main'; $attr6_url=$url; $attr6_class=$class; ?><?php
$params = array();
$tmp_url = $attr6_url;
?><a<?php if (isset($attr6_name)) echo ' name="'.$attr6_name.'"'; else echo ' href="'.$tmp_url.($attr6_anchor?'#'.$attr6_anchor:'').'"' ?> class="<?php echo $attr6_class ?>" target="<?php echo $attr6_target ?>"<?php if (isset($attr6_accesskey)) echo ' accesskey="'.$attr6_accesskey.'"' ?> title="<?php echo encodeHtml($attr6_title) ?>"><?php unset($attr6_title);unset($attr6_target);unset($attr6_url);unset($attr6_class); ?><?php $attr7_align='left'; $attr7_type=$icon; ?><?php
$attr7_tmp_image_file = $image_dir.'icon_'.$attr7_type.IMG_ICON_EXT;
$attr7_size = '16x16';
?><img alt="<?php echo basename($attr7_tmp_image_file); echo ' ('; if (isset($attr7_size)) { list($attr7_tmp_width,$attr7_tmp_height)=explode('x',$attr7_size);echo $attr7_tmp_width.'x'.$attr7_tmp_height; echo')';} ?>" src="<?php echo $attr7_tmp_image_file ?>" border="0"<?php if(isset($attr7_align)) echo ' align="'.$attr7_align.'"' ?><?php if (isset($attr7_size)) { list($attr7_tmp_width,$attr7_tmp_height)=explode('x',$attr7_size);echo ' width="'.$attr7_tmp_width.'" height="'.$attr7_tmp_height.'"';} ?>><?php unset($attr7_align);unset($attr7_type); ?><?php $attr7_class='text'; $attr7_var='name'; $attr7_escape=true; ?><?php
$attr7_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr7_class ?>" title="<?php echo $attr7_title ?>"><?php
$langF = $attr7_escape?'langHtml':'lang';
$tmp_text = isset($$attr7_var)?$$attr7_var:'?unset:'.$attr7_var.'?';
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr7_class);unset($attr7_var);unset($attr7_escape); ?><?php $attr7_class='text'; $attr7_raw='_'; $attr7_escape=true; ?><?php
$attr7_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr7_class ?>" title="<?php echo $attr7_title ?>"><?php
$langF = $attr7_escape?'langHtml':'lang';
$tmp_text = str_replace('_',' ',$attr7_raw);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr7_class);unset($attr7_raw);unset($attr7_escape); ?><?php ?></a><?php ?><?php ?></td><?php ?><?php ?><?php
$column_class_idx++;
if ($column_class_idx > count($column_classes))
$column_class_idx=1;
$column_class=$column_classes[$column_class_idx-1];
if (empty($attr5_class))
$attr5_class=$column_class;
global $cell_column_nr;
$cell_column_nr++;
if ( isset($column_widths[$cell_column_nr-1]) && !isset($attr5_rowspan) )
$attr5_width=$column_widths[$cell_column_nr-1];
?><td<?php
?>><?php ?><?php $attr6_date=$date; ?><?php
global $conf;
$time = $attr6_date;
if ( $time==0)
echo lang('GLOBAL_UNKNOWN');
elseif ( !$conf['interface']['human_date_format'] )
{
echo '<span title="';
$dl = date(lang('DATE_FORMAT_LONG'),$time);
$dl = str_replace('{weekday}',lang('DATE_WEEKDAY'.strval(date('w',$time))),$dl);
$dl = str_replace('{month}' ,lang('DATE_MONTH' .strval(date('n',$time))),$dl);
echo $dl;
unset($dl);
echo '">';
echo date(lang('DATE_FORMAT'),$time);
echo '</span>';
}
else
{
$sekunden = time()-$time;
$minuten = intval($sekunden/60);
$stunden = intval($minuten /60);
$tage = intval($stunden /24);
$monate = intval($tage /30);
$jahre = intval($monate /12);
echo '<span title="'.date(lang('DATE_FORMAT'),$time).'"">';
if ( $time==0)
echo lang('GLOBAL_UNKNOWN');
elseif ( !$conf['interface']['human_date_format'] )
echo date(lang('DATE_FORMAT'),$time);
elseif ( $sekunden == 1 )
echo $sekunden.' '.lang('GLOBAL_SECOND');
elseif ( $sekunden < 60 )
echo $sekunden.' '.lang('GLOBAL_SECONDS');
elseif ( $minuten == 1 )
echo $minuten.' '.lang('GLOBAL_MINUTE');
elseif ( $minuten < 60 )
echo $minuten.' '.lang('GLOBAL_MINUTES');
elseif ( $stunden == 1 )
echo $stunden.' '.lang('GLOBAL_HOUR');
elseif ( $stunden < 60 )
echo $stunden.' '.lang('GLOBAL_HOURS');
elseif ( $tage == 1 )
echo $tage.' '.lang('GLOBAL_DAY');
elseif ( $tage < 60 )
echo $tage.' '.lang('GLOBAL_DAYS');
elseif ( $monate == 1 )
echo $monate.' '.lang('GLOBAL_MONTH');
elseif ( $monate < 12 )
echo $monate.' '.lang('GLOBAL_MONTHS');
elseif ( $jahre == 1 )
echo $jahre.' '.lang('GLOBAL_YEAR');
else
echo $jahre.' '.lang('GLOBAL_YEARS');
echo '</span>';
}
?><?php unset($attr6_date); ?><?php ?></td><?php ?><?php ?></tr><?php ?><?php ?><?php } ?><?php ?><?php $attr3_empty='object'; ?><?php
if ( !isset($$attr3_empty) )
$attr3_tmp_exec = empty($attr3_empty);
elseif ( is_array($$attr3_empty) )
$attr3_tmp_exec = (count($$attr3_empty)==0);
elseif ( is_bool($$attr3_empty) )
$attr3_tmp_exec = true;
else
$attr3_tmp_exec = empty( $$attr3_empty );
$attr3_tmp_last_exec = $attr3_tmp_exec;
if ( $attr3_tmp_exec )
{
?>
<?php unset($attr3_empty); ?><?php ?><?php
$attr4_tmp_class='';
$attr4_last_class = $attr4_tmp_class;
echo Html::open_tag('tr',array('class'=>$attr4_tmp_class));
?><?php ?><?php $attr5_colspan='2'; ?><?php
$column_class_idx++;
if ($column_class_idx > count($column_classes))
$column_class_idx=1;
$column_class=$column_classes[$column_class_idx-1];
if (empty($attr5_class))
$attr5_class=$column_class;
global $cell_column_nr;
$cell_column_nr++;
if ( isset($column_widths[$cell_column_nr-1]) && !isset($attr5_rowspan) )
$attr5_width=$column_widths[$cell_column_nr-1];
?><td<?php
?> colspan="<?php echo $attr5_colspan ?>" <?php
?>><?php unset($attr5_colspan); ?><?php $attr6_class='text'; $attr6_text='GLOBAL_NOT_FOUND'; $attr6_escape=true; ?><?php
$attr6_title = '';
$tmp_tag = 'span';
?><<?php echo $tmp_tag ?> class="<?php echo $attr6_class ?>" title="<?php echo $attr6_title ?>"><?php
$langF = $attr6_escape?'langHtml':'lang';
$tmp_text = $langF($$attr6_textvar);
$tmp_text = $langF($attr6_text);
$tmp_text = nl2br($tmp_text);
echo $tmp_text;
unset($tmp_text);
?></<?php echo $tmp_tag ?>><?php unset($attr6_class);unset($attr6_text);unset($attr6_escape); ?><?php ?></td><?php ?><?php ?></tr><?php ?><?php ?><?php } ?><?php ?><?php ?> </table>
</td>
</tr>
</table>
</center>
<?php if ($showDuration)
{ ?>
<br/>
<center><small>
<?php $dur = time()-START_TIME;
echo floor($dur/60).':'.str_pad($dur%60,2,'0',STR_PAD_LEFT); ?></small></center>
<?php } ?>
<?php ?><?php ?></body>
</html><?php ?>