diff --git a/app/Helpers/Mapurl_helper.php b/app/Helpers/Mapurl_helper.php
index 988469c..b1fd365 100644
--- a/app/Helpers/Mapurl_helper.php
+++ b/app/Helpers/Mapurl_helper.php
@@ -30,7 +30,7 @@ function getFieldForm_MapurlHelper(string $field, mixed $value, array $viewDatas
$form = form_input($field, $value, [
"placeholder" => "예)https://new.example.com",
"style" =>
- "width:100%; ::placeholder{color:silver; opacity: 1;}",
+ "width:100%; ::placeholder{color:silver; opacity: 1;}",
"class" => "form-control",
(strpos($viewDatas['field_rules'][$field], 'required') !== false) ? "required" : ""
]);
@@ -51,7 +51,7 @@ function getFieldForm_MapurlHelper(string $field, mixed $value, array $viewDatas
default:
$form = form_input($field, $value, [
"style" =>
- "width:100%;",
+ "width:100%;",
"class" => "form-control",
(strpos($viewDatas['field_rules'][$field], 'required') !== false) ? "required" : ""
]);
@@ -108,7 +108,7 @@ function getListLabel_MapurlHelper(string $field, array $viewDatas, array $extra
$order_value = $viewDatas['order_value'] == 'DESC' ? "ASC" : "DESC";
$viewDatas['uri']->addQuery('order_field', $field);
$viewDatas['uri']->addQuery('order_value', $order_value);
- $label = anchor((string)$viewDatas['uri'], $label);
+ $label = anchor((string) $viewDatas['uri'], $label);
}
switch ($field) {
case MapurlModel::TITLE:
@@ -122,7 +122,7 @@ function getListButton_MapurlHelper(string $action, array $viewDatas, array $ext
case 'create':
$viewDatas['list_action_url'] = current_url() . '/' . $action;
$extras = ["class" => "btn btn-outline btn-primary btn-circle", "target" => "_self", ...$extras];
- $action = getListButtonLabel_CommonHelper($action, '입력', $viewDatas, $extras);
+ $action = getListButtonLabel_CommonHelper($action, '입력', $viewDatas, $extras);
break;
case 'modify':
$pk = $viewDatas['entity']->getPK();
diff --git a/app/Views/admin/cloudflare/account/index.php b/app/Views/admin/cloudflare/account/index.php
index 1b181cc..b952be3 100644
--- a/app/Views/admin/cloudflare/account/index.php
+++ b/app/Views/admin/cloudflare/account/index.php
@@ -4,14 +4,14 @@
= $this->include('templates/' . $viewDatas['layout'] . '/index_top'); ?>
= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
-
+
- | 번호 |
+ 번호 |
- = getListLabel_AccountHelper($field, $viewDatas) ?>
+ = getListLabel_AccountHelper($field, $viewDatas, ["data-rtc-resizable=\"{$field}\""]) ?>
- 작업 |
+ 작업 |
@@ -22,13 +22,13 @@
-
+ |
= getListButton_AccountHelper('sync', $viewDatas, ["style" => "cursor:pointer"]) ?>
|
= getFieldView_AccountHelper($field, $viewDatas) ?> |
-
+ |
= getListButton_AccountHelper('delete', $viewDatas) ?>
|
@@ -48,4 +48,23 @@
= form_close() ?>
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/app/Views/admin/cloudflare/auth/index.php b/app/Views/admin/cloudflare/auth/index.php
index 7a33ef9..ca4b86d 100644
--- a/app/Views/admin/cloudflare/auth/index.php
+++ b/app/Views/admin/cloudflare/auth/index.php
@@ -4,14 +4,14 @@
= $this->include('templates/' . $viewDatas['layout'] . '/index_top'); ?>
= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
-
+
- | 번호 |
+ 번호 |
- = getListLabel_AuthHelper($field, $viewDatas) ?>
+ = getListLabel_AuthHelper($field, $viewDatas, ["data-rtc-resizable=\"{$field}\""]) ?>
- 작업 |
+ 작업 |
@@ -20,14 +20,14 @@
status != DEFAULTS['STATUS'] ? 'class="table-danger" rowcolor="red"' : 'rowcolor="red"' ?>>
- |
+ |
= getListButton_AuthHelper('modify', $viewDatas, ["style" => "cursor:pointer"]) ?>
|
- = getFieldView_AuthHelper($field, $viewDatas) ?> |
+ = getFieldView_AuthHelper($field, $viewDatas) ?> |
-
- = getListButton_AuthHelper('delete', $viewDatas) ?>
+ |
+ = getListButton_AuthHelper('delete', $viewDatas) ?>
|
@@ -49,4 +49,23 @@
= $this->include('templates/' . $viewDatas['layout'] . '/' . $viewDatas['action_form']); ?>
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/app/Views/admin/cloudflare/record/index.php b/app/Views/admin/cloudflare/record/index.php
index 63b3737..9b59964 100644
--- a/app/Views/admin/cloudflare/record/index.php
+++ b/app/Views/admin/cloudflare/record/index.php
@@ -4,14 +4,14 @@
= $this->include('templates/' . $viewDatas['layout'] . '/index_top'); ?>
= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
-
+
- | 번호 |
+ 번호 |
- = getListLabel_RecordHelper($field, $viewDatas) ?>
+ = getListLabel_RecordHelper($field, $viewDatas, ["data-rtc-resizable=\"{$field}\""]) ?>
- 작업 |
+ 작업 |
@@ -22,14 +22,14 @@
-
+ |
= getListButton_RecordHelper('sync', $viewDatas, ["style" => "cursor:pointer"]) ?>
|
- = getFieldView_RecordHelper($field, $viewDatas) ?> |
+ = getFieldView_RecordHelper($field, $viewDatas) ?> |
-
- = getListButton_RecordHelper('delete', $viewDatas) ?>
+ |
+ = getListButton_RecordHelper('delete', $viewDatas) ?>
|
getParent() ?>
@@ -52,4 +52,23 @@
= $this->include('templates/' . $viewDatas['layout'] . '/' . $viewDatas['action_form']); ?>
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/app/Views/admin/cloudflare/zone/index.php b/app/Views/admin/cloudflare/zone/index.php
index 5d5887e..3d06165 100644
--- a/app/Views/admin/cloudflare/zone/index.php
+++ b/app/Views/admin/cloudflare/zone/index.php
@@ -4,14 +4,14 @@
= $this->include('templates/' . $viewDatas['layout'] . '/index_top'); ?>
= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
-
+
- | 번호 |
+ 번호 |
- = getListLabel_ZoneHelper($field, $viewDatas) ?>
+ = getListLabel_ZoneHelper($field, $viewDatas, ["data-rtc-resizable=\"{$field}\""]) ?>
- 작업 |
+ 작업 |
@@ -22,14 +22,14 @@
-
+ |
= getListButton_ZoneHelper('sync', $viewDatas, ["style" => "cursor:pointer"]) ?>
|
- = getFieldView_ZoneHelper($field, $viewDatas) ?> |
+ = getFieldView_ZoneHelper($field, $viewDatas) ?> |
-
- = getListButton_ZoneHelper('delete', $viewDatas) ?>
+ |
+ = getListButton_ZoneHelper('delete', $viewDatas) ?>
|
getParent() ?>
@@ -52,4 +52,23 @@
= $this->include('templates/' . $viewDatas['layout'] . '/' . $viewDatas['action_form']); ?>
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/app/Views/admin/mapurl/index.php b/app/Views/admin/mapurl/index.php
index d92ecb5..ed23256 100644
--- a/app/Views/admin/mapurl/index.php
+++ b/app/Views/admin/mapurl/index.php
@@ -4,14 +4,14 @@
= $this->include('templates/' . $viewDatas['layout'] . '/index_top'); ?>
= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
-
+
- | 번호 |
+ 번호 |
- = getListLabel_MapurlHelper($field, $viewDatas) ?>
+ = getListLabel_MapurlHelper($field, $viewDatas, ["data-rtc-resizable=\"{$field}\""]) ?>
- 작업 |
+ 작업 |
@@ -20,14 +20,14 @@
status != DEFAULTS['STATUS'] ? 'class="table-danger" rowcolor="red"' : 'rowcolor="red"' ?>>
- |
+ |
= getListButton_MapurlHelper('modify', $viewDatas, ["style" => "cursor:pointer"]) ?>
|
- = getFieldView_MapurlHelper($field, $viewDatas) ?> |
+ = getFieldView_MapurlHelper($field, $viewDatas) ?> |
-
- = getListButton_MapurlHelper('delete', $viewDatas) ?>
+ |
+ = getListButton_MapurlHelper('delete', $viewDatas) ?>
|
@@ -49,4 +49,23 @@
= $this->include('templates/' . $viewDatas['layout'] . '/' . $viewDatas['action_form']); ?>
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/app/Views/admin/user/index.php b/app/Views/admin/user/index.php
index c2a3755..6407fbb 100644
--- a/app/Views/admin/user/index.php
+++ b/app/Views/admin/user/index.php
@@ -4,14 +4,14 @@
= $this->include('templates/' . $viewDatas['layout'] . '/index_top'); ?>
= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
-
+
- | 번호 |
+ 번호 |
- = getListLabel_UserHelper($field, $viewDatas) ?>
+ = getListLabel_UserHelper($field, $viewDatas, ["data-rtc-resizable=\"{$field}\""]) ?>
- 작업 |
+ 작업 |
@@ -20,14 +20,14 @@
status != DEFAULTS['STATUS'] ? 'class="table-danger" rowcolor="red"' : 'rowcolor="red"' ?>>
- |
+ |
= getListButton_UserHelper('modify', $viewDatas, ["style" => "cursor:pointer"]) ?>
|
- = getFieldView_UserHelper($field, $viewDatas) ?> |
+ = getFieldView_UserHelper($field, $viewDatas) ?> |
-
- = getListButton_UserHelper('delete', $viewDatas) ?>
+ |
+ = getListButton_UserHelper('delete', $viewDatas) ?>
|
@@ -49,4 +49,23 @@
= $this->include('templates/' . $viewDatas['layout'] . '/' . $viewDatas['action_form']); ?>
+
+
+
= $this->endSection() ?>
\ No newline at end of file
diff --git a/app/Views/layouts/admin.php b/app/Views/layouts/admin.php
index 54f24ad..b956f83 100644
--- a/app/Views/layouts/admin.php
+++ b/app/Views/layouts/admin.php
@@ -30,7 +30,7 @@
= $this->include(LAYOUTS[$viewDatas['layout']]['path'] . '/left_menu'); ?>
-
= $this->renderSection('content') ?>
+
= $this->renderSection('content') ?>
diff --git a/app/Views/layouts/empty.php b/app/Views/layouts/empty.php
index cbb0873..4dfa306 100644
--- a/app/Views/layouts/empty.php
+++ b/app/Views/layouts/empty.php
@@ -23,7 +23,7 @@
- = $this->renderSection('content') ?>
+ = $this->renderSection('content') ?>