openclassify/addons/default/visiosoft/profile-module/src/Profile/Table/ProfileTableBuilder.php
2019-06-22 13:59:18 +03:00

64 lines
960 B
PHP

<?php namespace Visiosoft\ProfileModule\Profile\Table;
use Anomaly\Streams\Platform\Ui\Table\TableBuilder;
class ProfileTableBuilder extends TableBuilder
{
/**
* The table views.
*
* @var array|string
*/
protected $views = [];
/**
* The table filters.
*
* @var array|string
*/
protected $filters = [];
/**
* The table columns.
*
* @var array|string
*/
protected $columns = [
'username','first_name','last_name'
];
/**
* The table buttons.
*
* @var array|string
*/
protected $buttons = [
'edit'
];
/**
* The table actions.
*
* @var array|string
*/
protected $actions = [
'delete'
];
/**
* The table options.
*
* @var array
*/
protected $options = [];
/**
* The table assets.
*
* @var array
*/
protected $assets = [];
}