update codes
This commit is contained in:
parent
651e10d47e
commit
7fa0609ac5
10 changed files with 3972 additions and 3954 deletions
|
|
@ -1,4 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* need addon loader
|
||||||
|
*/
|
||||||
|
require_once __DIR__ . "/addon.loader.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Addon Struct
|
||||||
|
*/
|
||||||
class Addon
|
class Addon
|
||||||
{
|
{
|
||||||
public $name = "";
|
public $name = "";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* item class
|
||||||
|
*/
|
||||||
|
require_once __DIR__ . "/item.class.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* status class
|
||||||
|
*/
|
||||||
|
// require_once __DIR__ . "/status.class.php";
|
||||||
|
|
||||||
class Character extends Module
|
class Character extends Module
|
||||||
{
|
{
|
||||||
protected $_rawdata;
|
protected $_rawdata;
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,9 @@ $is_mine = $ch['mb_id'] == $character['mb_id'] ? true : false;
|
||||||
if (!$in['in_id']) {
|
if (!$in['in_id']) {
|
||||||
echo "<p>아이템 보유 정보를 확인할 수 없습니다.</p>";
|
echo "<p>아이템 보유 정보를 확인할 수 없습니다.</p>";
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (defined('G5_THEME_PATH') && is_file(G5_THEME_PATH . "/inventory/item.skin.php")) {
|
if (defined('G5_THEME_PATH') && is_file(G5_THEME_PATH . "/inventory/item.skin.php")) {
|
||||||
include G5_THEME_PATH . "/inventory/item.skin.php";
|
include G5_THEME_PATH . "/inventory/item.skin.php";
|
||||||
} else {
|
} else {
|
||||||
include G5_PATH . "/inventory/skin/item.skin.php";
|
include G5_PATH . "/inventory/skin/item.skin.php";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_'))
|
if (!defined('_GNUBOARD_'))
|
||||||
exit;
|
exit;
|
||||||
?>
|
?><div class="info">
|
||||||
|
|
||||||
<div class="info">
|
|
||||||
<div class="ui-thumb">
|
<div class="ui-thumb">
|
||||||
<img src="<?= $in['it_img'] ?>" />
|
<img src="<?= $in['it_img'] ?>" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_'))
|
if (!defined('_GNUBOARD_'))
|
||||||
exit;
|
exit;
|
||||||
?>
|
?><div class="info">
|
||||||
|
|
||||||
<div class="info">
|
|
||||||
<div class="ui-thumb">
|
<div class="ui-thumb">
|
||||||
<img src="<?= $in['it_img'] ?>" />
|
<img src="<?= $in['it_img'] ?>" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,6 @@
|
||||||
if (!defined('_GNUBOARD_'))
|
if (!defined('_GNUBOARD_'))
|
||||||
exit;
|
exit;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<div class="ui-thumb">
|
<div class="ui-thumb">
|
||||||
<img src="<?= $in['it_img'] ?>" />
|
<img src="<?= $in['it_img'] ?>" />
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
if (!defined('_GNUBOARD_'))
|
if (!defined('_GNUBOARD_'))
|
||||||
exit;
|
exit;
|
||||||
?>
|
?><ul class="inventory-list">
|
||||||
|
|
||||||
|
|
||||||
<ul class="inventory-list">
|
|
||||||
<?php
|
<?php
|
||||||
for ($i = 0; $i < count($inven_list); $i++) { ?>
|
for ($i = 0; $i < count($inven_list); $i++) { ?>
|
||||||
<li class="box-line bak">
|
<li class="box-line bak">
|
||||||
|
|
@ -22,11 +19,5 @@ if (!defined('_GNUBOARD_'))
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</li>
|
</li>
|
||||||
<?php }
|
<?php }
|
||||||
|
if ($i == 0) {?><li class="no-data">보유중인 아이템이 없습니다.</li><?php } ?>
|
||||||
if ($i == 0) {
|
|
||||||
?>
|
|
||||||
<li class="no-data">
|
|
||||||
보유중인 아이템이 없습니다.
|
|
||||||
</li>
|
|
||||||
<?php } ?>
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue