openrat-cms

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

memberships.php (790B)


      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>
      5 				<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'name'.'')))); ?></span>
      6 			</td>
      7 		</tr>
      8 		<?php $if3=(($groups)==FALSE); if($if3){?>
      9 			<tr class="data">
     10 				<td>
     11 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'NOT_FOUND'.'')))); ?></span>
     12 				</td>
     13 			</tr>
     14 		<?php } ?>
     15 		<?php foreach($groups as $list_key=>$group){ ?>
     16 			<tr class="data">
     17 				<td>
     18 					<span><?php echo nl2br(encodeHtml(htmlentities($group))); ?></span>
     19 				</td>
     20 			</tr>
     21 		<?php } ?>
     22 	</table></div></div>