-
Notifications
You must be signed in to change notification settings - Fork 2
Subclassing
Giovambattista Fazioli edited this page Feb 11, 2017
·
2 revisions

<?php
namespace WPKirk\Http\Controllers;
use WPKirk\WPTables\Html\WPTable;
class ExampleTable extends WPTable
{
protected $title = 'List of Discos';
public function getColumnsAttribute()
{
return [
'id' => 'Name',
'description' => 'Description',
];
}
public function getItems( $args = [] )
{
$fake = [];
for( $i = 0; $i < 20; $i++ ) {
$fake[] = [
'id' => "Disco {$i}",
'description' => 'Some description...'
];
}
return $fake;
}
}