change CLITool...1
This commit is contained in:
parent
5d1e66f131
commit
2c1840433e
@ -20,7 +20,7 @@ class Account extends API
|
|||||||
echo __FUNCTION__ . "에서 호출:" . $this->getAccountModel()->getLastQuery();
|
echo __FUNCTION__ . "에서 호출:" . $this->getAccountModel()->getLastQuery();
|
||||||
return $entitys;
|
return $entitys;
|
||||||
}
|
}
|
||||||
final public function execute($page_limit = 0, int $auth_uid = 0)
|
final public function execute(int $auth_uid = 0, $page_limit = 0)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
//transation처리
|
//transation처리
|
||||||
|
|||||||
@ -21,7 +21,7 @@ class Zone extends API
|
|||||||
Log::add("error", __FUNCTION__ . "에서 호출:" . $this->getZoneModel()->getLastQuery());
|
Log::add("error", __FUNCTION__ . "에서 호출:" . $this->getZoneModel()->getLastQuery());
|
||||||
return $entitys;
|
return $entitys;
|
||||||
}
|
}
|
||||||
final public function record(int $page_limit = 0, string $account_uid = '')
|
final public function record(string $account_uid = '', $page_limit = 0,)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
//transation처리
|
//transation처리
|
||||||
|
|||||||
@ -6,24 +6,24 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td style="text-align:right;">
|
<td style="text-align:right;">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="15%" nowrap style="text-align:right; color:white;">계정</td>
|
<td width="15%" nowrap style="text-align:right; color:white;">계정</td>
|
||||||
<td width="*" style="text-align:left;"><input type="text" id="id" name="id" value="<?= old('id')?>"></td>
|
<td width="*" style="text-align:left;"><input type="text" id="id" name="id" value="<?= old('id', DEFAULT_EMPTY) ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="15%" nowrap style="text-align:right; color:white;">암호</td>
|
<td width="15%" nowrap style="text-align:right; color:white;">암호</td>
|
||||||
<td width="*" style="text-align:left;"><input type="password" id="passwd" name="passwd" value="<?= old('passwd')?>"></td>
|
<td width="*" style="text-align:left;"><input type="password" id="passwd" name="passwd" value="<?= old('passwd', DEFAULT_EMPTY) ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
<td style="text-align:left;"><input type="submit" style="width:57px; height:60px; border:0px; background:url('/images/common/btn_login.png');" value="" alt="login"></td>
|
<td style="text-align:left;"><input type="submit" style="width:57px; height:60px; border:0px; background:url('/images/common/btn_login.png');" value="" alt="login"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" style="padding-top:10px; text-align:left; color:white;">
|
<td colspan="2" style="padding-top:10px; text-align:left; color:white;">
|
||||||
<?php if(session()->getFlashdata('error')):?><?= session()->getFlashdata('error') ?><?php endif?>
|
<?php if (session()->getFlashdata('error')) : ?><?= session()->getFlashdata('error') ?><?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<?= form_close(); ?>
|
<?= form_close(); ?>
|
||||||
</div>
|
</div>
|
||||||
<?= $this->endSection() ?>
|
<?= $this->endSection() ?>
|
||||||
Loading…
Reference in New Issue
Block a user