mirror of
https://github.com/openclassify/openclassify.git
synced 2026-03-06 23:35:23 -06:00
64 lines
960 B
PHP
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 = [];
|
|
|
|
}
|