servermgrv2 init...

This commit is contained in:
최준흠 2023-07-26 11:36:27 +09:00
parent 3dc91f7842
commit 27a11a9205

View File

@ -94,7 +94,9 @@ function getFieldIndex_Row_BoardHelper($field, $entity, array $fieldFilters, $fi
$value = $entity->$field ?: DEFAULTS['EMPTY'];
switch ($field) {
case 'title':
return anchor(
return sprintf(
"<div style=\"text-align:left;\">%s%s</div>",
anchor(
current_url() . '/view/' . $entity->getPrimaryKey(),
$value,
[
@ -102,11 +104,12 @@ function getFieldIndex_Row_BoardHelper($field, $entity, array $fieldFilters, $fi
"style" => sprintf("padding-left:%spx", $entity->getHierarchy_Depth() * DEFAULTS['HIERARCHY_GRPDEPTH']),
"target" => "_self"
]
) .
),
anchor(
current_url() . '/reply/' . $entity->getPrimaryKey(),
ICONS["REPLY"],
["target" => "_self"]
)
);
break;
case 'board_file':