shoppingmallv2 init...
This commit is contained in:
parent
063ab7ca7c
commit
77c434617c
@ -113,6 +113,10 @@ function getFieldIndex_Column_BoardHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-4'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -139,10 +143,10 @@ function getFieldIndex_Row_BoardHelper($field, $entity, array $viewDatas): strin
|
|||||||
$value,
|
$value,
|
||||||
["target" => "_self"]
|
["target" => "_self"]
|
||||||
);
|
);
|
||||||
return sprintf("<td class='text-start'>%s%s %s</td>", $depth, $reply, $view);
|
return sprintf("%s%s %s", $depth, $reply, $view);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_BoardHelper($field, $entity, $viewDatas));
|
return getFieldView_BoardHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -168,7 +172,7 @@ function getFieldIndex_Row_BoardHelper_Admin($field, $entity, array $viewDatas):
|
|||||||
$value,
|
$value,
|
||||||
["target" => "_self"]
|
["target" => "_self"]
|
||||||
);
|
);
|
||||||
return sprintf("<td class='text-start'>%s%s %s</td>", $depth, $reply, $view);
|
return sprintf("%s%s %s", $depth, $reply, $view);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (in_array($field, $viewDatas['fieldFilters'])) {
|
if (in_array($field, $viewDatas['fieldFilters'])) {
|
||||||
@ -179,7 +183,7 @@ function getFieldIndex_Row_BoardHelper_Admin($field, $entity, array $viewDatas):
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_BoardHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_BoardHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
return getFieldIndex_Row_BoardHelper($field, $entity, $viewDatas);
|
return getFieldIndex_Row_BoardHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -97,7 +97,7 @@ function getFieldIndex_Row_CardHelper($field, $entity, array $viewDatas): string
|
|||||||
$value = $entity->$field ?: DEFAULTS['EMPTY'];
|
$value = $entity->$field ?: DEFAULTS['EMPTY'];
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_CardHelper($field, $entity, $viewDatas));
|
return getFieldView_CardHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -113,6 +113,10 @@ function getFieldIndex_Column_CategoryHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-4'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -124,7 +128,7 @@ function getFieldIndex_Row_CategoryHelper($field, $entity, array $viewDatas): st
|
|||||||
{
|
{
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_CategoryHelper($field, $entity, $viewDatas));
|
return getFieldView_CategoryHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -149,7 +153,7 @@ function getFieldIndex_Row_CategoryHelper_Admin($field, $entity, array $viewData
|
|||||||
$value,
|
$value,
|
||||||
["target" => "_self"]
|
["target" => "_self"]
|
||||||
);
|
);
|
||||||
return sprintf("<td class='text-start'>%s%s %s</td>", $depth, $reply, $view);
|
return sprintf("%s%s %s", $depth, $reply, $view);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (in_array($field, $viewDatas['fieldFilters'])) {
|
if (in_array($field, $viewDatas['fieldFilters'])) {
|
||||||
@ -160,7 +164,7 @@ function getFieldIndex_Row_CategoryHelper_Admin($field, $entity, array $viewData
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_CategoryHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_CategoryHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
return getFieldIndex_Row_CategoryHelper($field, $entity, $viewDatas);
|
return getFieldIndex_Row_CategoryHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -56,6 +56,10 @@ function getFieldIndex_Column_DepositHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-4'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -67,7 +71,7 @@ function getFieldIndex_Row_DepositHelper($field, $entity, array $viewDatas): str
|
|||||||
{
|
{
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_DepositHelper($field, $entity, $viewDatas));
|
return getFieldView_DepositHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -110,6 +110,10 @@ function getFieldIndex_Column_OrderHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-4'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -123,19 +127,16 @@ function getFieldIndex_Row_OrderHelper($field, $entity, array $viewDatas): strin
|
|||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'title':
|
case 'title':
|
||||||
case 'name':
|
case 'name':
|
||||||
return sprintf(
|
return anchor(
|
||||||
"<td>%s</td>",
|
current_url() . '/view/' . $entity->getPrimaryKey() . '?category=' . $viewDatas['category']->getPrimaryKey(),
|
||||||
anchor(
|
$value,
|
||||||
current_url() . '/view/' . $entity->getPrimaryKey() . '?category=' . $viewDatas['category']->getPrimaryKey(),
|
["target" => "_self"]
|
||||||
$value,
|
|
||||||
["target" => "_self"]
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case 'status':
|
case 'status':
|
||||||
if ($value == DEFAULTS['STATUS']) {
|
if ($value == DEFAULTS['STATUS']) {
|
||||||
return sprintf(
|
return sprintf(
|
||||||
"<td nowrap><div class=\"payment\">%s</div><div class=\"payment\">%s</div></td>",
|
"<div class=\"payment\">%s</div><div class=\"payment\">%s</div>",
|
||||||
anchor(
|
anchor(
|
||||||
URLS['paymentCard'] . '/' . $entity->getPrimaryKey(),
|
URLS['paymentCard'] . '/' . $entity->getPrimaryKey(),
|
||||||
"카 드 결 제",
|
"카 드 결 제",
|
||||||
@ -148,11 +149,11 @@ function getFieldIndex_Row_OrderHelper($field, $entity, array $viewDatas): strin
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return sprintf("<td>%s</td>", getFieldView_OrderHelper($field, $entity, $viewDatas));
|
return getFieldView_OrderHelper($field, $entity, $viewDatas);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_OrderHelper($field, $entity, $viewDatas));
|
return getFieldView_OrderHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -163,13 +164,10 @@ function getFieldIndex_Row_OrderHelper_Admin($field, $entity, array $viewDatas):
|
|||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'title':
|
case 'title':
|
||||||
case 'name':
|
case 'name':
|
||||||
return sprintf(
|
return anchor(
|
||||||
"<td>%s</td>",
|
current_url() . '/view/' . $entity->getPrimaryKey(),
|
||||||
anchor(
|
$value,
|
||||||
current_url() . '/view/' . $entity->getPrimaryKey(),
|
["target" => "_self"]
|
||||||
$value,
|
|
||||||
["target" => "_self"]
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -181,7 +179,7 @@ function getFieldIndex_Row_OrderHelper_Admin($field, $entity, array $viewDatas):
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_OrderHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_OrderHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
return getFieldIndex_Row_OrderHelper($field, $entity, $viewDatas);
|
return getFieldIndex_Row_OrderHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -125,6 +125,10 @@ function getFieldIndex_Column_ProductHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-4'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -158,7 +162,7 @@ function getFieldIndex_Row_ProductHelper_Admin($field, $entity, array $viewDatas
|
|||||||
case 'title':
|
case 'title':
|
||||||
case 'name':
|
case 'name':
|
||||||
return sprintf(
|
return sprintf(
|
||||||
"<td class='text-start'>%s<BR>%s</td>",
|
"%s<BR>%s",
|
||||||
$entity->getFileImage("middle", 'photo'),
|
$entity->getFileImage("middle", 'photo'),
|
||||||
anchor(
|
anchor(
|
||||||
current_url() . '/view/' . $entity->getPrimaryKey(),
|
current_url() . '/view/' . $entity->getPrimaryKey(),
|
||||||
@ -176,10 +180,10 @@ function getFieldIndex_Row_ProductHelper_Admin($field, $entity, array $viewDatas
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_ProductHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_ProductHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
//front는 table을 사용하지 않는 점 주의
|
//front는 table을 사용하지 않는 점 주의
|
||||||
return sprintf("<td>%s</td>", getFieldIndex_Row_ProductHelper($field, $entity, $viewDatas));
|
return getFieldIndex_Row_ProductHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -113,6 +113,10 @@ function getFieldIndex_Column_SitepageHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-4'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -122,25 +126,13 @@ function getFieldIndex_Column_SitepageHelper($field, array $viewDatas)
|
|||||||
//Front용
|
//Front용
|
||||||
function getFieldIndex_Row_SitepageHelper($field, $entity, array $viewDatas): string
|
function getFieldIndex_Row_SitepageHelper($field, $entity, array $viewDatas): string
|
||||||
{
|
{
|
||||||
$value = $entity->$field ?: DEFAULTS['EMPTY'];
|
//front쪽은 table을 사용하지 않음 주의
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'title':
|
|
||||||
case 'name':
|
|
||||||
return sprintf(
|
|
||||||
"<td>%s</td>",
|
|
||||||
anchor(
|
|
||||||
current_url() . '/view/' . $entity->getPrimaryKey(),
|
|
||||||
$value,
|
|
||||||
["target" => "_self"]
|
|
||||||
)
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
case 'content':
|
case 'content':
|
||||||
//front쪽은 table을 사용하지 않음 주의
|
|
||||||
return getFieldView_SitepageHelper($field, $entity, $viewDatas);
|
return getFieldView_SitepageHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_SitepageHelper($field, $entity, $viewDatas));
|
return getFieldView_SitepageHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -148,7 +140,16 @@ function getFieldIndex_Row_SitepageHelper($field, $entity, array $viewDatas): st
|
|||||||
//Admin용
|
//Admin용
|
||||||
function getFieldIndex_Row_SitepageHelper_Admin($field, $entity, array $viewDatas): string
|
function getFieldIndex_Row_SitepageHelper_Admin($field, $entity, array $viewDatas): string
|
||||||
{
|
{
|
||||||
|
$value = $entity->$field ?: DEFAULTS['EMPTY'];
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return anchor(
|
||||||
|
current_url() . '/view/' . $entity->getPrimaryKey(),
|
||||||
|
$value,
|
||||||
|
["target" => "_self"]
|
||||||
|
);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (in_array($field, $viewDatas['fieldFilters'])) {
|
if (in_array($field, $viewDatas['fieldFilters'])) {
|
||||||
$attributes["onChange"] = sprintf(
|
$attributes["onChange"] = sprintf(
|
||||||
@ -158,8 +159,9 @@ function getFieldIndex_Row_SitepageHelper_Admin($field, $entity, array $viewData
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_SitepageHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_SitepageHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
|
//front쪽은 table을 사용하지 않음 주의
|
||||||
return getFieldIndex_Row_SitepageHelper($field, $entity, $viewDatas);
|
return getFieldIndex_Row_SitepageHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -101,6 +101,10 @@ function getFieldIndex_Column_UserSNSHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-1'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -114,17 +118,14 @@ function getFieldIndex_Row_UserSNSHelper($field, $entity, array $viewDatas): str
|
|||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'title':
|
case 'title':
|
||||||
case 'name':
|
case 'name':
|
||||||
return sprintf(
|
return anchor(
|
||||||
"<td>%s</td>",
|
current_url() . '/view/' . $entity->getPrimaryKey(),
|
||||||
anchor(
|
$value,
|
||||||
current_url() . '/view/' . $entity->getPrimaryKey(),
|
["target" => "_self"]
|
||||||
$value,
|
|
||||||
["target" => "_self"]
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_UserSNSHelper($field, $entity, $viewDatas));
|
return getFieldView_UserSNSHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -141,7 +142,7 @@ function getFieldIndex_Row_UserSNSHelper_Admin($field, $entity, array $viewDatas
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_UserSNSHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_UserSNSHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
return getFieldIndex_Row_UserSNSHelper($field, $entity, $viewDatas);
|
return getFieldIndex_Row_UserSNSHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -117,6 +117,10 @@ function getFieldIndex_Column_UserHelper($field, array $viewDatas)
|
|||||||
$viewDatas['uri']->addQuery('order_value', $value);
|
$viewDatas['uri']->addQuery('order_value', $value);
|
||||||
$columnData = anchor($viewDatas['uri'], $label);
|
$columnData = anchor($viewDatas['uri'], $label);
|
||||||
switch ($field) {
|
switch ($field) {
|
||||||
|
case 'title':
|
||||||
|
case 'name':
|
||||||
|
return sprintf("<th class='col-1'>%s</th>", $columnData);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<th>%s</th>", $columnData);
|
return sprintf("<th>%s</th>", $columnData);
|
||||||
break;
|
break;
|
||||||
@ -130,17 +134,14 @@ function getFieldIndex_Row_UserHelper($field, $entity, array $viewDatas): string
|
|||||||
switch ($field) {
|
switch ($field) {
|
||||||
case 'title':
|
case 'title':
|
||||||
case 'name':
|
case 'name':
|
||||||
return sprintf(
|
return anchor(
|
||||||
"<td>%s</td>",
|
current_url() . '/view/' . $entity->getPrimaryKey(),
|
||||||
anchor(
|
$value,
|
||||||
current_url() . '/view/' . $entity->getPrimaryKey(),
|
["target" => "_self"]
|
||||||
$value,
|
|
||||||
["target" => "_self"]
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return sprintf("<td>%s</td>", getFieldView_UserHelper($field, $entity, $viewDatas));
|
return getFieldView_UserHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //
|
} //
|
||||||
@ -157,7 +158,7 @@ function getFieldIndex_Row_UserHelper_Admin($field, $entity, array $viewDatas):
|
|||||||
foreach ($viewDatas['fieldFormOptions'][$field] as $key => $label) {
|
foreach ($viewDatas['fieldFormOptions'][$field] as $key => $label) {
|
||||||
$checkboxs[] = form_checkbox("{$field}[]", $key, in_array($key, explode(DEFAULTS["DELIMITER_ROLE"], $value))) . $label;
|
$checkboxs[] = form_checkbox("{$field}[]", $key, in_array($key, explode(DEFAULTS["DELIMITER_ROLE"], $value))) . $label;
|
||||||
}
|
}
|
||||||
return sprintf("<td>%s</td>", implode(" ", $checkboxs));
|
return implode(" ", $checkboxs);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (in_array($field, $viewDatas['fieldFilters'])) {
|
if (in_array($field, $viewDatas['fieldFilters'])) {
|
||||||
@ -168,7 +169,7 @@ function getFieldIndex_Row_UserHelper_Admin($field, $entity, array $viewDatas):
|
|||||||
$field,
|
$field,
|
||||||
$field
|
$field
|
||||||
);
|
);
|
||||||
return sprintf("<td>%s</td>", getFieldForm_UserHelper($field, $entity->$field, $viewDatas, $attributes));
|
return getFieldForm_UserHelper($field, $entity->$field, $viewDatas, $attributes);
|
||||||
}
|
}
|
||||||
return getFieldIndex_Row_UserHelper($field, $entity, $viewDatas);
|
return getFieldIndex_Row_UserHelper($field, $entity, $viewDatas);
|
||||||
break;
|
break;
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_BoardHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_BoardHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_BoardHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_BoardHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_CategoryHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_CategoryHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_CategoryHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_CategoryHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_OrderHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_OrderHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_OrderHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_OrderHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_ProductHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_ProductHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_ProductHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_ProductHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_SitepageHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_SitepageHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_SitepageHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_SitepageHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_UserHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_UserHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_UserHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_UserHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -12,9 +12,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_UserSNSHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_UserSNSHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
<?= anchor(current_url() . '/update/' . $entity->getPrimaryKey(), $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt), ["target" => "_self"]) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_UserSNSHelper_Admin($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_UserSNSHelper_Admin($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
<td><?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -8,9 +8,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_BoardHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_BoardHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -26,13 +26,9 @@
|
|||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_BoardHelper($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_BoardHelper($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td>
|
<td>
|
||||||
<!-- 사용자가 쓰기권한이 있는지 확인-->
|
|
||||||
<?php if (isRole_CommonHelper($viewDatas['currentRoles'], $viewDatas['category'], CATEGORY_ROLE_FIELDS['WRITE'])) : ?>
|
|
||||||
<?= anchor(current_url() . '/insert?category=' . $viewDatas['category']->getPrimaryKey(), '입력', ["class" => "btn btn-sm btn-primary btn-circle", "target" => "_self"]) ?>
|
|
||||||
<?php endif ?>
|
|
||||||
<!-- 사용자가 자신의 작성한것인지 확인되면 delete 가능-->
|
<!-- 사용자가 자신의 작성한것인지 확인되면 delete 가능-->
|
||||||
<?php if ($viewDatas[SESSION_NAMES['ISLOGIN']] && $entity->user_uid == $viewDatas['auth'][AUTH_FIELDS['ID']]) : ?>
|
<?php if ($viewDatas[SESSION_NAMES['ISLOGIN']] && $entity->user_uid == $viewDatas['auth'][AUTH_FIELDS['ID']]) : ?>
|
||||||
<?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey() . '?category=' . $viewDatas['category']->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?>
|
<?= anchor(current_url() . '/delete/' . $entity->getPrimaryKey() . '?category=' . $viewDatas['category']->getPrimaryKey(), ICONS['DELETE'], ["class" => "btn btn-sm btn-danger btn-circle", "target" => "_self"]) ?>
|
||||||
@ -44,6 +40,10 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
|
<!-- 사용자가 쓰기권한이 있는지 확인-->
|
||||||
|
<?php if (isRole_CommonHelper($viewDatas['currentRoles'], $viewDatas['category'], CATEGORY_ROLE_FIELDS['WRITE'])) : ?>
|
||||||
|
<?= anchor(current_url() . '/insert?category=' . $viewDatas['category']->getPrimaryKey(), '입력', ["class" => "btn btn-sm btn-primary btn-circle", "target" => "_self"]) ?>
|
||||||
|
<?php endif ?>
|
||||||
<?= $viewDatas['pagination'] ?>
|
<?= $viewDatas['pagination'] ?>
|
||||||
</div>
|
</div>
|
||||||
<?= form_close() ?>
|
<?= form_close() ?>
|
||||||
|
|||||||
@ -9,9 +9,9 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_OrderHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_OrderHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
<th>작업</th>
|
<th>@</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -22,7 +22,7 @@
|
|||||||
<?= $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt) ?>
|
<?= $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt) ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_OrderHelper($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_OrderHelper($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<td>
|
<td>
|
||||||
<?php if ($entity->status == DEFAULTS['STATUS']) : ?>
|
<?php if ($entity->status == DEFAULTS['STATUS']) : ?>
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>번호</th>
|
<th>#</th>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_UserHelper($field, $viewDatas) ?><?php endforeach ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?><?= getFieldIndex_Column_UserHelper($field, $viewDatas) ?><?php endforeach ?>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -25,7 +25,7 @@
|
|||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
<?php foreach ($viewDatas['fields'] as $field) : ?>
|
||||||
<?= getFieldIndex_Row_UserHelper($field, $entity, $viewDatas) ?>
|
<td><?= getFieldIndex_Row_UserHelper($field, $entity, $viewDatas) ?></td>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
</tr>
|
</tr>
|
||||||
<?php $cnt++ ?>
|
<?php $cnt++ ?>
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
border:0px;
|
border:0px;
|
||||||
font-size:12px;
|
font-size:14px;
|
||||||
font: Arial;
|
font: Arial;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -68,7 +68,6 @@ div#content table.product tr:first-child {
|
|||||||
|
|
||||||
div#content table thead th{
|
div#content table thead th{
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-align:center;
|
|
||||||
padding-top:15px;
|
padding-top:15px;
|
||||||
padding-bottom:15px;
|
padding-bottom:15px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@ -78,10 +77,6 @@ div#content table thead th{
|
|||||||
background-color:#F5F5F5;
|
background-color:#F5F5F5;
|
||||||
/* border:1px solid silver; */
|
/* border:1px solid silver; */
|
||||||
}
|
}
|
||||||
div#content table tbody td {
|
|
||||||
/* border:1px solid silver; */
|
|
||||||
text-align:center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#content div.bottom {
|
div#content div.bottom {
|
||||||
padding-top:15px;
|
padding-top:15px;
|
||||||
|
|||||||
@ -69,7 +69,6 @@ div#content table.product tr:first-child {
|
|||||||
|
|
||||||
div#content table thead th{
|
div#content table thead th{
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-align:center;
|
|
||||||
padding-top:15px;
|
padding-top:15px;
|
||||||
padding-bottom:15px;
|
padding-bottom:15px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@ -79,10 +78,6 @@ div#content table thead th{
|
|||||||
background-color:#F5F5F5;
|
background-color:#F5F5F5;
|
||||||
/* border:1px solid silver; */
|
/* border:1px solid silver; */
|
||||||
}
|
}
|
||||||
div#content table tbody td {
|
|
||||||
/* border:1px solid silver; */
|
|
||||||
text-align:center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#content div.bottom {
|
div#content div.bottom {
|
||||||
padding-top:15px;
|
padding-top:15px;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user