AUTO LOGOUT EXTENDED

自動ログアウト除外ユーザ設定を追加
This commit is contained in:
2021-07-02 18:54:27 +09:00
parent 6d4b4c813d
commit adc35d3e8a
8 changed files with 91 additions and 4 deletions
+6 -2
View File
@@ -46,14 +46,18 @@
<th scope="row">ログイン状態の保存期間</th>
<td>
<input type="number" class="expire-date" name="_al_ext[expire_date]"
value="<?php echo esc_attr( $expire_date ); ?>"> 日
value="<?php echo esc_attr( $expire_date ); ?>" min="1" max="500"> 日(1〜500日)
</td>
</tr>
<tr valign="top">
<th scope="row">自動ログアウト時間</th>
<td>
<input type="number" class="force-logout" name="_al_ext[force_logout]"
value="<?php echo esc_attr( $force_logout ); ?>"> 分
value="<?php echo esc_attr( $force_logout ); ?>" min="1" max="120"> 分(1〜120分)
<div id="logout-exclude-users">
自動ログアウト除外ユーザ
<?php include_once al_ext_config::AL_EXT_TEMPLATE_DIR . 'al_ext_user.php'; ?>
</div>
</td>
</tr>
<tr valign="top">