mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 01:09:21 +02:00
Admin panel fixes (#62)
* Admin Panel * fixes -Code Clean Up -Remove dist folder and merged into tools.
This commit is contained in:
parent
6dab50cbd8
commit
d1e6061541
@ -4,13 +4,13 @@
|
||||
<head>
|
||||
<?php echo template_header(true); ?>
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
<link rel="stylesheet" href="dist/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
|
||||
<link rel="stylesheet" href="dist/css/skins/skin-blue.min.css">
|
||||
<link rel="stylesheet" href="<?php echo BASE_URL; ?>tools/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="<?php echo BASE_URL; ?>tools/css/AdminLTE.min.css">
|
||||
<link rel="stylesheet" href="<?php echo BASE_URL; ?>tools/css/skins/skin-blue.min.css">
|
||||
|
||||
<link rel="stylesheet" href="dist/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="dist/css/ionicons.min.css">
|
||||
<link rel="stylesheet" href="dist/css/dataTables.bootstrap.min.css">
|
||||
<link rel="stylesheet" href="<?php echo BASE_URL; ?>tools/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="<?php echo BASE_URL; ?>tools/css/ionicons.min.css">
|
||||
<link rel="stylesheet" href="<?php echo BASE_URL; ?>tools/css/dataTables.bootstrap.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $template_path; ?>style.css" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||||
@ -211,11 +211,11 @@
|
||||
}
|
||||
?>
|
||||
|
||||
<script src="dist/js/bootstrap.min.js"></script>
|
||||
<script src="dist/js/jquery.min.js"></script>
|
||||
<script src="dist/js/jquery-ui.min.js"></script>
|
||||
<script src="dist/js/jquery.dataTables.min.js"></script>
|
||||
<script src="dist/js/dataTables.bootstrap.min.js"></script>
|
||||
<script src="dist/js/adminlte.min.js"></script>
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/bootstrap.min.js"></script>
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/jquery.min.js"></script>
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/jquery-ui.min.js"></script>
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/jquery.dataTables.min.js"></script>
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/dataTables.bootstrap.min.js"></script>
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/adminlte.min.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -4,7 +4,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $locale['encoding']; ?>" />
|
||||
<title>MyAAC - <?php echo $locale['installation']; ?></title>
|
||||
<link rel="stylesheet" type="text/css" href="template/style.css" />
|
||||
<script type="text/javascript" src="<?php echo BASE_URL; ?>tools/jquery.js"></script>
|
||||
<script type="text/javascript" src="<?php echo BASE_URL; ?>tools/js/jquery.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
|
@ -481,8 +481,8 @@ function template_header($is_admin = false)
|
||||
<meta name="description" content="' . $config['meta_description'] . '" />
|
||||
<meta name="keywords" content="' . $config['meta_keywords'] . ', myaac, wodzaac" />
|
||||
<meta name="generator" content="MyAAC" />
|
||||
<link rel="stylesheet" type="text/css" href="' . BASE_URL . 'tools/messages.css" />
|
||||
<script type="text/javascript" src="' . BASE_URL . 'tools/jquery.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="' . BASE_URL . 'tools/css/messages.css" />
|
||||
<script type="text/javascript" src="' . BASE_URL . 'tools/js/jquery.js"></script>
|
||||
<noscript>
|
||||
<div class="warning" style="text-align: center; font-size: 14px;">Your browser does not support JavaScript or its disabled!<br/>
|
||||
Please turn it on, or be aware that some features on this website will not work correctly.</div>
|
||||
|
@ -36,8 +36,8 @@ function verify_number($number, $name, $max_length)
|
||||
|
||||
?>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo BASE_URL; ?>tools/jquery.datetimepicker.css"/ >
|
||||
<script src="<?php echo BASE_URL; ?>tools/jquery.datetimepicker.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo BASE_URL; ?>tools/css/jquery.datetimepicker.css"/ >
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/jquery.datetimepicker.js"></script>
|
||||
|
||||
<?php
|
||||
$id = 0;
|
||||
@ -327,7 +327,7 @@ else if ($id > 0 && isset($account) && $account->isLoaded())
|
||||
value="<?php echo $account->getCustomField('web_lastlogin'); ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<!-- nav-tabs-custom -->
|
||||
|
||||
<input type="hidden" name="save" value="yes"/>
|
||||
<div class="box-footer">
|
||||
<a href="<?php echo ADMIN_URL; ?>?p=accounts"><span class="btn btn-danger">Cancel</span></a>
|
||||
@ -349,9 +349,7 @@ else if ($id > 0 && isset($account) && $account->isLoaded())
|
||||
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
|
||||
</button>
|
||||
</div>
|
||||
<!-- /.box-tools -->
|
||||
</div>
|
||||
<!-- /.box-header -->
|
||||
|
||||
<div class="box-body">
|
||||
<form action="<?php echo $base; ?>" method="post">
|
||||
@ -364,9 +362,7 @@ else if ($id > 0 && isset($account) && $account->isLoaded())
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
<?php
|
||||
if (isset($account) && $account->isLoaded()) {
|
||||
$account_players = array();
|
||||
@ -377,7 +373,6 @@ else if ($id > 0 && isset($account) && $account->isLoaded())
|
||||
<div class="box-header">
|
||||
<h3 class="box-title">Character List:</h3>
|
||||
</div>
|
||||
<!-- /.box-header -->
|
||||
<div class="box-body no-padding">
|
||||
<table class="table table-striped">
|
||||
<tbody><tr>
|
||||
@ -401,7 +396,6 @@ else if ($id > 0 && isset($account) && $account->isLoaded())
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
|
||||
<?php
|
||||
@ -409,55 +403,16 @@ else if ($id > 0 && isset($account) && $account->isLoaded())
|
||||
};
|
||||
?>
|
||||
</div>
|
||||
<div class="row">
|
||||
<?php if (isset($accoun1t) && $account->isLoaded()) {
|
||||
?>
|
||||
<div class="col-md-4">
|
||||
<?php
|
||||
$tableToDescribe = 'accounts';
|
||||
$statement = $db->query('DESCRIBE ' . $tableToDescribe);
|
||||
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
|
||||
$val = 0;
|
||||
foreach ($result as $column) {
|
||||
// IF val = 2 MAKE <TR> TODO
|
||||
($val == 2) ? "<tr>" : "";
|
||||
?>
|
||||
|
||||
<td><?php echo $column['Field'] ?></td>
|
||||
<td><input type="text" name="lastip" size="8" maxlength="10"
|
||||
value="<?php echo $account->getCustomField($column['Field']); ?>"/></td>
|
||||
<?php
|
||||
echo $column['Field'] . ' - ' . $column['Type'], '<br>';
|
||||
|
||||
if ($val == 2) {
|
||||
echo "</tr>";
|
||||
$val = 1;
|
||||
} else {
|
||||
++$val;
|
||||
}
|
||||
|
||||
} ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$('#lastlogin').datetimepicker({
|
||||
format: 'unixtime'
|
||||
});
|
||||
$('#lastlogout').datetimepicker({
|
||||
format: 'unixtime'
|
||||
});
|
||||
$('#created').datetimepicker({
|
||||
format: 'unixtime'
|
||||
});
|
||||
$('#web_lastlogin').datetimepicker({
|
||||
format: 'unixtime'
|
||||
});
|
||||
$('#lastlogin').datetimepicker({ format: 'unixtime' });
|
||||
$('#lastlogout').datetimepicker({ format: 'unixtime' });
|
||||
$('#created').datetimepicker({ format: 'unixtime' });
|
||||
$('#web_lastlogin').datetimepicker({ format: 'unixtime' });
|
||||
$(document).ready(function () {
|
||||
$('.input_control').change(function () {
|
||||
$('input[name=pass]')[0].disabled = !this.checked;
|
||||
$('input[name=pass]')[0].value = '';
|
||||
}).change();
|
||||
});
|
||||
</script>
|
||||
</script>
|
@ -65,7 +65,7 @@ $query = $query->fetch();
|
||||
$total_houses = $query['how_much'];
|
||||
|
||||
$points = $db->query('SELECT `premium_points`, `' . (USE_ACCOUNT_NAME ? 'name' : 'id') . '` as `name` FROM `accounts` ORDER BY `premium_points` DESC LIMIT 10;');
|
||||
$coins = $db->query('SELECT `coins`, `' . (USE_ACCOUNT_NAME ? 'name' : 'id') . '` as `name` FROM `accounts` ORDER BY `premium_points` DESC LIMIT 10;');
|
||||
|
||||
|
||||
$twig->display('admin.statistics.html.twig', array(
|
||||
'total_accounts' => $total_accounts,
|
||||
@ -79,8 +79,7 @@ $twig->display('admin.dashboard.html.twig', array(
|
||||
'closed_message' => $closed_message,
|
||||
'status' => $status,
|
||||
'account_type' => (USE_ACCOUNT_NAME ? 'name' : 'number'),
|
||||
'points' => $points,
|
||||
'coins' => $coins
|
||||
'points' => $points
|
||||
));
|
||||
function clearCache()
|
||||
{
|
||||
|
@ -45,8 +45,8 @@ $skills = array(
|
||||
);
|
||||
?>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo BASE_URL; ?>tools/jquery.datetimepicker.css"/ >
|
||||
<script src="<?php echo BASE_URL; ?>tools/jquery.datetimepicker.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo BASE_URL; ?>tools/css/jquery.datetimepicker.css"/ >
|
||||
<script src="<?php echo BASE_URL; ?>tools/js/jquery.datetimepicker.js"></script>
|
||||
|
||||
<?php
|
||||
$id = 0;
|
||||
|
@ -12,8 +12,8 @@ defined('MYAAC') or die('Direct access not allowed!');
|
||||
$title = "Creatures";
|
||||
|
||||
?>
|
||||
<script type="text/javascript" src="tools/tipped.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="tools/tipped.css"/>
|
||||
<script type="text/javascript" src="tools/js/tipped.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="tools/css/tipped.css"/>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
Tipped.create('.tooltip');
|
||||
|
@ -96,33 +96,6 @@
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="col-md-3">
|
||||
<div class="box">
|
||||
<div class="box-header">
|
||||
<h3 class="box-title">Top 10 - Most wealthly accounts</h3>
|
||||
</div>
|
||||
<div class="box-body no-padding">
|
||||
<table class="table table-condensed">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Account {{ account_type }}</th>
|
||||
<th>Tibia coins</th>
|
||||
</tr>
|
||||
{% set i = 0 %}
|
||||
{% for result in coins %}
|
||||
{% set i = i + 1 %}
|
||||
<tr>
|
||||
<td>{{ i }}</td>
|
||||
<td>{{ result.name }}</td>
|
||||
<td>{{ result.coins }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<div class="box">
|
||||
<div class="box-header">
|
||||
|
@ -17,7 +17,7 @@
|
||||
<div class="form-group input-group">
|
||||
<span class="input-group-addon"><i class="fa fa-lock"></i></span>
|
||||
<input type="password" class="form-control" id="account-name-input" name="account_login"
|
||||
placeholder="Username" required autofocus>
|
||||
placeholder="Account Name" required autofocus>
|
||||
</div>
|
||||
<div class="form-group input-group">
|
||||
<span class="input-group-addon"><i class="fa fa-key"></i></span>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<link type="text/css" rel="stylesheet" href="{{ constant('BASE_URL') }}tools/jquery-ui.min.css">
|
||||
<script src="{{ constant('BASE_URL') }}tools/jquery-ui.min.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="{{ constant('BASE_URL') }}tools/css/jquery-ui.min.css">
|
||||
<script src="{{ constant('BASE_URL') }}tools/js/jquery-ui.min.js"></script>
|
||||
<script>
|
||||
var last_id = [];
|
||||
{% for cat, menu in menus %}
|
||||
@ -44,8 +44,8 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript" src="{{ constant('BASE_URL') }}tools/spectrum.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="{{ constant('BASE_URL') }}tools/spectrum.css" />
|
||||
<script type="text/javascript" src="{{ constant('BASE_URL') }}tools/js/spectrum.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="{{ constant('BASE_URL') }}tools/css/spectrum.css" />
|
||||
<script type="text/javascript">
|
||||
initialiceSpectrum();
|
||||
function initialiceSpectrum() {
|
||||
|
@ -1,5 +1,5 @@
|
||||
<script type="text/javascript" src="tools/tipped.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="tools/tipped.css"/>
|
||||
<script type="text/javascript" src="tools/js/tipped.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="tools/css/tipped.css"/>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
Tipped.create('.tooltip');
|
||||
|
1136
tools/tipped.css → tools/css/tipped.css
Executable file → Normal file
1136
tools/tipped.css → tools/css/tipped.css
Executable file → Normal file
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 434 KiB After Width: | Height: | Size: 434 KiB |
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
13
tools/jquery-ui.min.js
vendored
13
tools/jquery-ui.min.js
vendored
File diff suppressed because one or more lines are too long
0
tools/jquery.js → tools/js/jquery.js
vendored
0
tools/jquery.js → tools/js/jquery.js
vendored
0
tools/tipped.js → tools/js/tipped.js
Executable file → Normal file
0
tools/tipped.js → tools/js/tipped.js
Executable file → Normal file
Loading…
x
Reference in New Issue
Block a user