openrat-cms

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

license.php (4672B)


      1 <?php if (!defined('OR_TITLE')) die('Forbidden'); ?>
      2 	<div class="or-form">
      3 		<fieldset class="toggle-open-close<?php echo true?" open":" closed" ?><?php echo true?" show":"" ?>"><legend class="on-click-open-close"><div class="arrow arrow-right on-closed"></div><div class="arrow arrow-down on-open"></div><?php echo lang('USER') ?></legend><div class="closable">
      4 			<div class="line">
      5 				<div class="label">
      6 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'USER_USERNAME'.'')))); ?></span>
      7 				</div>
      8 				<div class="input">
      9 					<span><?php echo nl2br(encodeHtml(htmlentities($user_name))); ?></span>
     10 				</div>
     11 			</div>
     12 			<div class="line">
     13 				<div class="label">
     14 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'USER_FULLNAME'.'')))); ?></span>
     15 				</div>
     16 				<div class="input">
     17 					<span><?php echo nl2br(encodeHtml(htmlentities($user_fullname))); ?></span>
     18 				</div>
     19 			</div>
     20 			<div class="line">
     21 				<div class="label">
     22 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'USER_LOGIN_DATE'.'')))); ?></span>
     23 				</div>
     24 				<div class="input">
     25 					<?php include_once( 'modules/template-engine/components/html/date/component-date.php') ?><?php component_date($user_login) ?>
     26 				</div>
     27 			</div>
     28 		</div></fieldset>
     29 		<fieldset class="toggle-open-close<?php echo true?" open":" closed" ?><?php echo true?" show":"" ?>"><legend class="on-click-open-close"><div class="arrow arrow-right on-closed"></div><div class="arrow arrow-down on-open"></div><?php echo lang('CMS') ?></legend><div class="closable">
     30 			<div class="line">
     31 				<div class="label">
     32 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'NAME'.'')))); ?></span>
     33 				</div>
     34 				<div class="input">
     35 					<span><?php echo nl2br(encodeHtml(htmlentities($cms_name))); ?></span>
     36 					<span><?php echo nl2br(encodeHtml(htmlentities($cms_version))); ?></span>
     37 				</div>
     38 			</div>
     39 			<div class="line">
     40 				<div class="label">
     41 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'OPERATOR'.'')))); ?></span>
     42 				</div>
     43 				<div class="input">
     44 					<span><?php echo nl2br(encodeHtml(htmlentities($cms_operator))); ?></span>
     45 				</div>
     46 			</div>
     47 		</div></fieldset>
     48 		<fieldset class="toggle-open-close<?php echo true?" open":" closed" ?><?php echo true?" show":"" ?>"><legend class="on-click-open-close"><div class="arrow arrow-right on-closed"></div><div class="arrow arrow-down on-open"></div><?php echo lang('SYSTEM') ?></legend><div class="closable">
     49 			<div class="line">
     50 				<div class="label">
     51 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'DATE_TIME'.'')))); ?></span>
     52 				</div>
     53 				<div class="input">
     54 					<span><?php echo nl2br(encodeHtml(htmlentities($time))); ?></span>
     55 				</div>
     56 			</div>
     57 			<div class="line">
     58 				<div class="label">
     59 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'OPERATING_SYSTEM'.'')))); ?></span>
     60 				</div>
     61 				<div class="input">
     62 					<span><?php echo nl2br(encodeHtml(htmlentities($os))); ?></span>
     63 					<span><?php echo nl2br(encodeHtml(htmlentities($release))); ?></span>
     64 					<span><?php echo nl2br(encodeHtml(htmlentities($machine))); ?></span>
     65 				</div>
     66 			</div>
     67 			<div class="line">
     68 				<div class="label">
     69 					<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'INTERPRETER'.'')))); ?></span>
     70 				</div>
     71 				<div class="input">
     72 					<span><?php echo nl2br(encodeHtml(htmlentities($version))); ?></span>
     73 				</div>
     74 			</div>
     75 		</div></fieldset>
     76 		<fieldset class="toggle-open-close<?php echo true?" open":" closed" ?><?php echo true?" show":"" ?>"><legend class="on-click-open-close"><div class="arrow arrow-right on-closed"></div><div class="arrow arrow-down on-open"></div><?php echo lang('LICENSE') ?></legend><div class="closable">
     77 			<div class="or-table-wrapper"><div class="or-table-area"><table width="100%">
     78 				<tr class="headline">
     79 					<td>
     80 						<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'name'.'')))); ?></span>
     81 					</td>
     82 					<td>
     83 						<span><?php echo nl2br(encodeHtml(htmlentities(lang(''.'license'.'')))); ?></span>
     84 					</td>
     85 				</tr>
     86 				<?php foreach($software as $list_key=>$list_value){ ?><?php extract($list_value) ?>
     87 					<tr class="data">
     88 						<td class="clickable">
     89 							<a target="_self" data-url="<?php echo $url ?>" data-type="external" data-action="" data-method="license" data-id="<?php echo OR_ID ?>" data-extra="[]" href="<?php echo $url ?>">
     90 								<span><?php echo nl2br(encodeHtml(htmlentities($name))); ?></span>
     91 							</a>
     92 						</td>
     93 						<td>
     94 							<span><?php echo nl2br(encodeHtml(htmlentities($license))); ?></span>
     95 						</td>
     96 					</tr>
     97 				<?php } ?>
     98 			</table></div></div>
     99 		</div></fieldset>
    100 	</div>