mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
40 lines
829 B
PHP
40 lines
829 B
PHP
|
<?php namespace App\Ninja\Datatables;
|
||
|
|
||
|
use URL;
|
||
|
|
||
|
class TokenDatatable extends EntityDatatable
|
||
|
{
|
||
|
public $entityType = ENTITY_TOKEN;
|
||
|
|
||
|
public function columns()
|
||
|
{
|
||
|
return [
|
||
|
[
|
||
|
'name',
|
||
|
function ($model) {
|
||
|
return link_to("tokens/{$model->public_id}/edit", $model->name)->toHtml();
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
'token',
|
||
|
function ($model) {
|
||
|
return $model->token;
|
||
|
}
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function actions()
|
||
|
{
|
||
|
return [
|
||
|
[
|
||
|
uctrans('texts.edit_token'),
|
||
|
function ($model) {
|
||
|
return URL::to("tokens/{$model->public_id}/edit");
|
||
|
}
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|