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();
|
||||
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 {
|
||||
//transation처리
|
||||
|
||||
@ -21,7 +21,7 @@ class Zone extends API
|
||||
Log::add("error", __FUNCTION__ . "에서 호출:" . $this->getZoneModel()->getLastQuery());
|
||||
return $entitys;
|
||||
}
|
||||
final public function record(int $page_limit = 0, string $account_uid = '')
|
||||
final public function record(string $account_uid = '', $page_limit = 0,)
|
||||
{
|
||||
try {
|
||||
//transation처리
|
||||
|
||||
@ -6,21 +6,21 @@
|
||||
<tr>
|
||||
<td style="text-align:right;">
|
||||
<table>
|
||||
<tr>
|
||||
<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>
|
||||
</tr>
|
||||
<tr>
|
||||
<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>
|
||||
</tr>
|
||||
<tr>
|
||||
<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', DEFAULT_EMPTY) ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<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', DEFAULT_EMPTY) ?>"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</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>
|
||||
<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>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user