openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

show.php (917B)


      1 <?php if (!defined('OR_TITLE')) die('Forbidden'); ?>
      2 	<div class="or-table-wrapper"><div class="or-table-filter"><input type="search" name="filter" placeholder="<?php echo lang('SEARCH_FILTER') ?>" /></div><div class="or-table-area"><table width="100%">
      3 		<tr class="headline">
      4 			<td class="help">
      5 				<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'GLOBAL_NAME'.'')))); ?></span>
      6 			</td>
      7 			<td class="help">
      8 				<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'GLOBAL_VALUE'.'')))); ?></span>
      9 			</td>
     10 		</tr>
     11 		<?php foreach($config as $list_key=>$list_value){ ?><?php extract($list_value) ?>
     12 			<tr class="data">
     13 				<td>
     14 					<span><?php echo nl2br(encodeHtml(htmlentities($key))); ?></span>
     15 				</td>
     16 				<td class="<?php echo $class ?>">
     17 					<span class="<?php echo $class ?>"><?php echo nl2br(encodeHtml(htmlentities($value))); ?></span>
     18 				</td>
     19 			</tr>
     20 		<?php } ?>
     21 	</table></div></div>