Skip to content

Commit

Permalink
パーミッショングループ一覧の「有効」列を非表示に変更
Browse files Browse the repository at this point in the history
こちらのIssueに関連するため一旦コメントアウト、仕様をどうするか検討が必要
#3384
  • Loading branch information
ryuring committed Nov 14, 2024
1 parent e538b14 commit e9c55db
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@
</tr>
<?php endif ?>

<?php
// TODO こちらのIssueに関連するため一旦コメントアウト、仕様をどうするか検討が必要
// https://github.com/baserproject/basercms/pull/3384
?>
<?php /* ?>
<tr>
<th class="col-head bca-form-table__label"><?php echo $this->BcAdminForm->label('status', __d('baser_core', '利用状態')) ?></th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @unitTest
* @noTodo
*/
$this->BcListTable->setColumnNumber(6);
$this->BcListTable->setColumnNumber(5);
$i = 1;
?>

Expand All @@ -28,7 +28,11 @@
<th class="bca-table-listup__thead-th">No</th>
<th class="bca-table-listup__thead-th"><?php echo __d('baser_core', 'ルールグループ名') ?></th>
<th class="bca-table-listup__thead-th"><?php echo __d('baser_core', '設定数') ?></th>
<th class="bca-table-listup__thead-th"><?php echo __d('baser_core', '有効') ?></th>
<?php
// TODO こちらのIssueに関連するため一旦コメントアウト、仕様をどうするか検討が必要
// https://github.com/baserproject/basercms/pull/3384
?>
<!-- <th class="bca-table-listup__thead-th">--><?php //echo __d('baser_core', '有効') ?><!--</th>-->
<?php echo $this->BcListTable->dispatchShowHead() ?>
<th class="bca-table-listup__thead-th">
<?php echo __d('baser_core', '登録日') ?><br><?php echo __d('baser_core', '更新日') ?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@
<td class="bca-table-listup__tbody-td">
<?php echo $entity->amount ?>
</td>
<td class="bca-table-listup__tbody-td">
<?php echo $this->BcText->arrayValue($entity->status, [0 => '×', 1 => '']) ?>
</td>
<?php
// TODO こちらのIssueに関連するため一旦コメントアウト、仕様をどうするか検討が必要
// https://github.com/baserproject/basercms/pull/3384
?>
<!-- <td class="bca-table-listup__tbody-td">-->
<!-- --><?php //echo $this->BcText->arrayValue($entity->status, [0 => '×', 1 => '〇']) ?>
<!-- </td>-->
<?php echo $this->BcListTable->dispatchShowRow($entity) ?>
<td class="bca-table-listup__tbody-td">
<?php echo $this->BcTime->format($entity->created); ?><br>
Expand Down

0 comments on commit e9c55db

Please sign in to comment.