mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-09 11:42:28 +01:00
Merge disable/delete column to Control
This commit is contained in:
parent
a2cd017684
commit
f047e31513
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
use Illuminate\Http\Request;
|
||||
use Yajra\Datatables\Facades\Datatables;
|
||||
@ -123,6 +124,12 @@ class AdminPaginationController extends Controller {
|
||||
</a>';
|
||||
}
|
||||
|
||||
public function renderControlLinkCell($link){
|
||||
return '<div class="btn-group" role="group">
|
||||
' . $this->renderToggleLinkActiveCell($link) . $this->renderDeleteLinkCell($link) . '
|
||||
</div>';
|
||||
}
|
||||
|
||||
/* DataTables bindings */
|
||||
|
||||
public function paginateAdminUsers(Request $request) {
|
||||
@ -143,8 +150,7 @@ class AdminPaginationController extends Controller {
|
||||
|
||||
$admin_links = Link::select(['short_url', 'long_url', 'clicks', 'created_at', 'creator', 'is_disabled']);
|
||||
return Datatables::of($admin_links)
|
||||
->addColumn('disable', [$this, 'renderToggleLinkActiveCell'])
|
||||
->addColumn('delete', [$this, 'renderDeleteLinkCell'])
|
||||
->addColumn('control', [$this, 'renderControlLinkCell'])
|
||||
->editColumn('clicks', [$this, 'renderClicksCell'])
|
||||
->editColumn('long_url', [$this, 'renderLongUrlCell'])
|
||||
->escapeColumns(['short_url', 'creator'])
|
||||
|
@ -152,15 +152,12 @@ polr.controller('AdminCtrl', function($scope, $compile, $timeout) {
|
||||
"ajax": BASE_API_PATH + 'admin/get_admin_links',
|
||||
|
||||
"columns": [
|
||||
{className: 'wrap-text', data: 'short_url', name: 'short_url'},
|
||||
{className: 'wrap-text', data: 'short_url', name: 'short_url', width: '10%'},
|
||||
{className: 'wrap-text', data: 'long_url', name: 'long_url'},
|
||||
{data: 'clicks', name: 'clicks'},
|
||||
{data: 'created_at', name: 'created_at'},
|
||||
{data: 'creator', name: 'creator'},
|
||||
|
||||
{data: 'disable', name: 'disable', orderable: false, searchable: false},
|
||||
{data: 'delete', name: 'delete', orderable: false, searchable: false}
|
||||
|
||||
{data: 'clicks', name: 'clicks', width: '10%'},
|
||||
{data: 'created_at', name: 'created_at', width: '18%'},
|
||||
{data: 'creator', name: 'creator', width: '20%'},
|
||||
{data: 'control', name: 'control', orderable: false, searchable: false, width: '15%'},
|
||||
]
|
||||
}, datatables_config));
|
||||
}
|
||||
|
@ -8,8 +8,7 @@
|
||||
@if ($table_id == "admin_links_table")
|
||||
{{-- Show action buttons only if admin view --}}
|
||||
<th>Creator</th>
|
||||
<th>Disable</th>
|
||||
<th>Delete</th>
|
||||
<th>Control</th>
|
||||
@endif
|
||||
</tr>
|
||||
</thead>
|
||||
|
Loading…
Reference in New Issue
Block a user