mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
23 lines
477 B
PHP
23 lines
477 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\Tests\GridField\GridFieldExportButtonTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class NoView extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'GridFieldExportButtonTest_NoView';
|
|
|
|
private static $db = [
|
|
'Name' => 'Varchar',
|
|
'City' => 'Varchar',
|
|
'RugbyTeamNumber' => 'Int'
|
|
];
|
|
|
|
public function canView($member = null)
|
|
{
|
|
return false;
|
|
}
|
|
}
|