Skip to content

Commit

Permalink
Merge branch 'dev-5' into dev-5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Mar 3, 2024
2 parents 0cc8f5a + cba4e2e commit 26c6c90
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@
?>


<div class="bca-data-list__top">
<div class="bca-data-list__sub">
<!-- pagination -->
<?php $this->BcBaser->element('pagination') ?>
</div>
</div>

<table class="list-table bca-table-listup" id="ListTable">
<thead class="bca-table-listup__thead">
<tr>
Expand Down Expand Up @@ -84,3 +91,12 @@
<?php endif; ?>
</tbody>
</table>

<div class="bca-data-list__bottom">
<div class="bca-data-list__sub">
<!-- pagination -->
<?php $this->BcBaser->element('pagination') ?>
<!-- list-num -->
<?php $this->BcBaser->element('list_num') ?>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ class CustomFieldsController extends CustomContentAdminAppController
*/
public function index(CustomFieldsAdminServiceInterface $service)
{
$this->set(['entities' => $this->paginate($service->getIndex($this->getRequest()->getQueryParams()))]);
$this->set([
'entities' => $this->paginate(
$service->getIndex(
$this->getRequest()->getQueryParams()
)
)
]);
}

/**
Expand Down

0 comments on commit 26c6c90

Please sign in to comment.