servermgrv2 init...

This commit is contained in:
최준흠 2023-07-21 14:40:30 +09:00
parent fac3cd62a9
commit f304e172fc
2 changed files with 4 additions and 2 deletions

View File

@ -180,6 +180,7 @@ foreach (PATHS as $key => $path) {
//아이콘 및 Sound관련
define('ICONS', [
'NEW' => '<i class="fa fa-paper-plane" aria-hidden="true"></i>',
'REPLY' => '<button style="font-size:12px"><i class="fa fa-reply"></i>Reply</button>',
'DELETE' => '<i class="fa fa-trash-o"></i>',
'RELOAD' => '<i class="fa fa-refresh" aria-hidden="true"></i>',
'SETTING' => '<i class="fa fa-cogs" aria-hidden="true"></i>',

View File

@ -66,9 +66,10 @@ function getFieldIndex_Row_BoardHelper($field, array $row, array $fieldFilters,
switch ($field) {
case 'title':
return sprintf(
'<div style="text-align:left; padding-left:%spx;">%s</div>',
'<div style="text-align:left; padding-left:%spx;">%s&nbsp;&nbsp;%s</div>',
$row['grpdepth'] * 30,
anchor(current_url() . '/reply/' . $row['uid'], $row[$field], ["target" => "_self"])
anchor(current_url() . '/view/' . $row['uid'], $row[$field], ["target" => "_self"]),
anchor(current_url() . '/reply/' . $row['uid'], ICONS['REPLY'], ["target" => "_self"])
);
break;
case 'updated_at':