mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php namespace App\Ninja\Datatables;
|
|
|
|
use Utils;
|
|
use URL;
|
|
use Auth;
|
|
|
|
class ExpenseCategoryDatatable extends EntityDatatable
|
|
{
|
|
public $entityType = ENTITY_EXPENSE_CATEGORY;
|
|
public $sortCol = 1;
|
|
|
|
public function columns()
|
|
{
|
|
return [
|
|
[
|
|
'name',
|
|
function ($model)
|
|
{
|
|
if ( ! Auth::user()->can('editByOwner', [ENTITY_EXPENSE_CATEGORY, $model->user_id])) {
|
|
return $model->category;
|
|
}
|
|
|
|
return link_to("expense_categories/{$model->public_id}/edit", $model->category)->toHtml();
|
|
}
|
|
],
|
|
];
|
|
}
|
|
|
|
public function actions()
|
|
{
|
|
return [
|
|
[
|
|
trans('texts.edit_category'),
|
|
function ($model) {
|
|
return URL::to("expense_categories/{$model->public_id}/edit") ;
|
|
},
|
|
function ($model) {
|
|
return Auth::user()->can('editByOwner', [ENTITY_EXPENSE_CATEGORY, $model->user_id]);
|
|
}
|
|
],
|
|
];
|
|
}
|
|
|
|
}
|