openrat-cms

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

history.php (1756B)


      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(''.'project'.'')))); ?></span>
      6 			</td>
      7 			<td>
      8 				<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'filename'.'')))); ?></span>
      9 			</td>
     10 			<td>
     11 				<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'user_username'.'')))); ?></span>
     12 			</td>
     13 			<td>
     14 				<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'lastchange'.'')))); ?></span>
     15 			</td>
     16 		</tr>
     17 		<?php foreach($timeline as $list_key=>$list_value){ ?><?php extract($list_value) ?>
     18 			<tr class="data">
     19 				<td class="clickable">
     20 					<a target="_self" data-type="post" data-action="start" data-method="projectmenu" data-id="<?php echo $projectid ?>" data-extra="[]" data-data="{&quot;action&quot;:&quot;start&quot;,&quot;subaction&quot;:&quot;projectmenu&quot;,&quot;id&quot;:&quot;<?php echo $projectid ?>&quot;,&quot;token&quot;:&quot;<?php echo token() ?>&quot;,&quot;none&quot;:&quot;0&quot;}">
     21 						<span><?php echo nl2br(encodeHtml(htmlentities($projectname))); ?></span>
     22 					</a>
     23 				</td>
     24 				<td>
     25 					<span><?php echo nl2br(encodeHtml(htmlentities(Text::maxLength( $filename,30,'..',constant('STR_PAD_BOTH') )))); ?></span>
     26 				</td>
     27 				<td>
     28 					<span><?php echo nl2br(encodeHtml(htmlentities($username))); ?></span>
     29 				</td>
     30 				<td>
     31 					<?php include_once( 'modules/template-engine/components/html/date/component-date.php') ?><?php component_date($lastchange_date) ?>
     32 				</td>
     33 			</tr>
     34 		<?php } ?>
     35 	</table></div></div>