cfmgrv4 init...3

This commit is contained in:
최준흠 2024-10-16 18:58:18 +09:00
parent cec136b66d
commit 20fb3e8773
2 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<?= $this->section('content') ?>
<div class="layout_top"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/top'); ?></div>
<!-- Layout Middle Start -->
<table class="layout_middle table table-bordered">
<table class="layout_middle">
<tr>
<td class="layout_left">
<!-- Layout Left Start -->
@ -23,7 +23,8 @@
<tr>
<th class="index_head_short_column">번호</th>
<?php foreach ($viewDatas['fields'] as $field): ?>
<th data-rtc-resizable="<?= $field ?>"><?= $viewDatas['helper']->getListLabel($field, $viewDatas) ?></th>
<th data-rtc-resizable="<?= $field ?>"><?= $viewDatas['helper']->getListLabel($field, $viewDatas) ?>
</th>
<?php endforeach ?>
<th class="index_head_short_column">작업</th>
</tr>

View File

@ -2,7 +2,7 @@
<?= $this->section('content') ?>
<div class="layout_top"><?= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/top'); ?></div>
<!-- Layout Middle Start -->
<table class="layout_middle table table-bordered">
<table class="layout_middle">
<tr>
<td class="layout_left">
<!-- Layout Left Start -->
@ -86,7 +86,7 @@
return `${base.protocol}//${base.hostname}${base.pathname.substring(0, base.pathname.lastIndexOf('/') + 1)}${url}`;
}
document.addEventListener('DOMContentLoaded', function() {
document.addEventListener('DOMContentLoaded', function () {
fetchRSS();
setInterval(fetchRSS, 3600000);
});