Files
pi-control/public_html/templates/terminal.tpl.php

67 lines
2.2 KiB
PHP

<?php if (!defined('PICONTROL')) exit(); ?>
<style>
.system_msg {
color: #01a7db;
font-style: italic;
}
.user_name {
font-weight: bold;
}
.user_message {
color: #FFFFFF;
}
pre {
margin: 0;
}
</style>
<script language="javascript" type="text/javascript">
var ip = '<?php echo $_SERVER['SERVER_ADDR']; ?>';
var port = <?php echo $data['port']; ?>;
var cookie = '<?php echo $data['cookie']; ?>';
</script>
<script language="javascript" type="text/javascript" src="public_html/js/terminal.websocket.js"></script>
<div class="sidebar">
<div class="box">
<div class="inner-header">
<span><?php _e('Status'); ?></span>
</div>
<div class="inner">
<strong id="status"><?php _e('Lade...'); ?></strong><br /><br />
<select name="terminal">
<?php foreach ($data['ports'] as $index => $port) { ?>
<option style="background: <?php echo ($port['active'] === true) ? '#73CA3C' : '#E9492E'; ?>;" value="<?php echo $port['port']; ?>" <?php if ($data['port'] == $port['port']) echo ' selected="selected"'; ?>><?php _e('Terminal %d (%s)', $index + 1, ($port['active'] === true) ? _t('Online') : _t('Offline')); ?></option>
<?php } ?>
</select>
<div id="frame"></div>
</div>
<div class="inner-end">
<input type="button" name="close" value="<?php _e('Verbindung trennen'); ?>" />
</div>
</div>
</div>
<!-- Container -->
<div class="container-600">
<div class="box">
<div class="inner-header">
<span><?php _e('Terminal'); ?></span>
</div>
<div class="inner">
<?php _e('Das Terminal bietet dir die M&ouml;glichkeit, einfache Befehle direkt im Pi Control auszuf&uuml;hren.'); ?>
</div>
<div class="inner overflow-auto" id="terminal" style="background: #000000; color: #CCCCCC; padding: 5px; font-family: monospace; height: 360px;"></div>
<div class="inner" style="padding-top: 15px;">
<table style="width: 100%;">
<tr>
<td style="width: 5%;"><?php _e('Befehl: '); ?></td>
<td><input type="text" name="command" id="command" style="width: 100%; box-sizing: border-box;" /></td>
<td style="width: 5%;"><input type="button" id="submit" value="<?php _e('Abschicken'); ?>" /></td>
</tr>
</table>
<br /><input type="button" id="cancel" value="Strg + C" />
</div>
</div>
</div>
<div class="clear_both"></div>