spells page: Fixed errors when spells is not installed by admin.

This commit is contained in:
Znote 2017-02-15 18:27:14 +01:00
parent bc2a6e2c01
commit 96802cb348

View File

@ -94,148 +94,156 @@ if (user_logged_in() && is_admin($user_data)) {
} }
// End loading spell list // End loading spell list
// Preparing data if ($spells) {
$configVoc = $config['vocations']; // Preparing data
$types = array_keys($spells); $configVoc = $config['vocations'];
$itemServer = 'http://'.$config['shop']['imageServer'].'/'; $types = array_keys($spells);
$itemServer = 'http://'.$config['shop']['imageServer'].'/';
// Filter spells by vocation // Filter spells by vocation
$getVoc = (isset($_GET['vocation'])) ? getValue($_GET['vocation']) : 'all'; $getVoc = (isset($_GET['vocation'])) ? getValue($_GET['vocation']) : 'all';
if ($getVoc !== 'all') { if ($getVoc !== 'all') {
$getVoc = (int)$getVoc; $getVoc = (int)$getVoc;
foreach ($types as $type) foreach ($types as $type)
foreach ($spells[$type] as $name => $spell) foreach ($spells[$type] as $name => $spell)
if (!empty($spell['vocations'])) if (!empty($spell['vocations']))
if (!in_array($getVoc, $spell['vocations'])) if (!in_array($getVoc, $spell['vocations']))
unset($spells[$type][$name]); unset($spells[$type][$name]);
}
// Render HTML
?>
<h1 id="spells">Spells<?php if ($getVoc !== 'all') echo ' ('.$configVoc[$getVoc]['name'].')';?></h1>
<form action="#spells" class="filter_spells">
<label for="vocation">Filter vocation:</label>
<select id="vocation" name="vocation">
<option value="all">All</option>
<?php foreach ($config['vocations'] as $id => $vocation): ?>
<option value="<?php echo $id; ?>" <?php if ($getVoc === $id) echo "selected"; ?>><?php echo $vocation['name']; ?></option>
<?php endforeach; ?>
</select>
<input type="submit" value="Search">
</form>
<h2>Spell types:</h2>
<ul>
<?php foreach ($types as $type): ?>
<li><a href="#spell_<?php echo $type; ?>"><?php echo ucfirst($type); ?></a></li>
<?php endforeach; ?>
</ul>
<h2 id="spell_instant">Instant Spells</h2>
<a href="#spells">Jump to top</a>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Name</td>
<td>Words</td>
<td>Level</td>
<td>Mana</td>
<td>Vocations</td>
</tr>
<?php foreach ($spells['instant'] as $spell): ?>
<tr>
<td><?php echo $spell['name']; ?></td>
<td><?php echo $spell['words']; ?></td>
<td><?php echo $spell['lvl']; ?></td>
<td><?php echo $spell['mana']; ?></td>
<td><?php
if (!empty($spell['vocations'])) {
$names = array();
foreach ($spell['vocations'] as $id) {
if (isset($configVoc[$id]))
$names[] = $configVoc[$id]['name'];
}
echo implode(',<br>', $names);
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<h2 id="spell_rune">Magical Runes</h2>
<a href="#spells">Jump to top</a>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Name</td>
<td>Level</td>
<td>Magic Level</td>
<td>Image</td>
<td>Vocations</td>
</tr>
<?php foreach ($spells['rune'] as $spell): ?>
<tr>
<td><?php echo $spell['name']; ?></td>
<td><?php echo $spell['lvl']; ?></td>
<td><?php echo $spell['maglv']; ?></td>
<td><img src="<?php echo $itemServer.$spell['id'].'.gif'; ?>" alt="Rune image"></td>
<td><?php
if (!empty($spell['vocations'])) {
$names = array();
foreach ($spell['vocations'] as $id) {
if (isset($configVoc[$id]))
$names[] = $configVoc[$id]['name'];
}
echo implode(',<br>', $names);
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<h2 id="spell_conjure">Conjure Spells</h2>
<a href="#spells">Jump to top</a>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Name</td>
<td>Words</td>
<td>Level</td>
<td>Mana</td>
<td>Soul</td>
<td>Charges</td>
<td>Image</td>
<td>Vocations</td>
</tr>
<?php foreach ($spells['conjure'] as $spell): ?>
<tr>
<td><?php echo $spell['name']; ?></td>
<td><?php echo $spell['words']; ?></td>
<td><?php echo $spell['lvl']; ?></td>
<td><?php echo $spell['mana']; ?></td>
<td><?php echo $spell['soul']; ?></td>
<td><?php echo $spell['conjureCount']; ?></td>
<td><img src="<?php echo $itemServer.$spell['conjureId'].'.gif'; ?>" alt="Rune image"></td>
<td><?php
if (!empty($spell['vocations'])) {
$names = array();
foreach ($spell['vocations'] as $id) {
if (isset($configVoc[$id]))
$names[] = $configVoc[$id]['name'];
}
echo implode(',<br>', $names);
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<a href="#spells">Jump to top</a>
<?php
} else {
?>
<h1>Spells</h1>
<p>Spells have currently not been loaded into the website by the server admin.</p>
<?php
} }
// Render HTML
?>
<h1 id="spells">Spells<?php if ($getVoc !== 'all') echo ' ('.$configVoc[$getVoc]['name'].')';?></h1>
<form action="#spells" class="filter_spells">
<label for="vocation">Filter vocation:</label>
<select id="vocation" name="vocation">
<option value="all">All</option>
<?php foreach ($config['vocations'] as $id => $vocation): ?>
<option value="<?php echo $id; ?>" <?php if ($getVoc === $id) echo "selected"; ?>><?php echo $vocation['name']; ?></option>
<?php endforeach; ?>
</select>
<input type="submit" value="Search">
</form>
<h2>Spell types:</h2>
<ul>
<?php foreach ($types as $type): ?>
<li><a href="#spell_<?php echo $type; ?>"><?php echo ucfirst($type); ?></a></li>
<?php endforeach; ?>
</ul>
<h2 id="spell_instant">Instant Spells</h2>
<a href="#spells">Jump to top</a>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Name</td>
<td>Words</td>
<td>Level</td>
<td>Mana</td>
<td>Vocations</td>
</tr>
<?php foreach ($spells['instant'] as $spell): ?>
<tr>
<td><?php echo $spell['name']; ?></td>
<td><?php echo $spell['words']; ?></td>
<td><?php echo $spell['lvl']; ?></td>
<td><?php echo $spell['mana']; ?></td>
<td><?php
if (!empty($spell['vocations'])) {
$names = array();
foreach ($spell['vocations'] as $id) {
if (isset($configVoc[$id]))
$names[] = $configVoc[$id]['name'];
}
echo implode(',<br>', $names);
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<h2 id="spell_rune">Magical Runes</h2>
<a href="#spells">Jump to top</a>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Name</td>
<td>Level</td>
<td>Magic Level</td>
<td>Image</td>
<td>Vocations</td>
</tr>
<?php foreach ($spells['rune'] as $spell): ?>
<tr>
<td><?php echo $spell['name']; ?></td>
<td><?php echo $spell['lvl']; ?></td>
<td><?php echo $spell['maglv']; ?></td>
<td><img src="<?php echo $itemServer.$spell['id'].'.gif'; ?>" alt="Rune image"></td>
<td><?php
if (!empty($spell['vocations'])) {
$names = array();
foreach ($spell['vocations'] as $id) {
if (isset($configVoc[$id]))
$names[] = $configVoc[$id]['name'];
}
echo implode(',<br>', $names);
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<h2 id="spell_conjure">Conjure Spells</h2>
<a href="#spells">Jump to top</a>
<table class="table tbl-hover">
<tbody>
<tr class="yellow">
<td>Name</td>
<td>Words</td>
<td>Level</td>
<td>Mana</td>
<td>Soul</td>
<td>Charges</td>
<td>Image</td>
<td>Vocations</td>
</tr>
<?php foreach ($spells['conjure'] as $spell): ?>
<tr>
<td><?php echo $spell['name']; ?></td>
<td><?php echo $spell['words']; ?></td>
<td><?php echo $spell['lvl']; ?></td>
<td><?php echo $spell['mana']; ?></td>
<td><?php echo $spell['soul']; ?></td>
<td><?php echo $spell['conjureCount']; ?></td>
<td><img src="<?php echo $itemServer.$spell['conjureId'].'.gif'; ?>" alt="Rune image"></td>
<td><?php
if (!empty($spell['vocations'])) {
$names = array();
foreach ($spell['vocations'] as $id) {
if (isset($configVoc[$id]))
$names[] = $configVoc[$id]['name'];
}
echo implode(',<br>', $names);
}
?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<a href="#spells">Jump to top</a>
<?php
/* Debug tests /* Debug tests
foreach ($spells as $type => $spells) { foreach ($spells as $type => $spells) {
data_dump($spells, false, "Type: $type"); data_dump($spells, false, "Type: $type");