silverstripe-framework/tests/php/Forms/GridField/GridFieldTest/Permissions.php

32 lines
630 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Forms\Tests\GridField\GridFieldTest;
use SilverStripe\ORM\DataObject;
use SilverStripe\Dev\TestOnly;
class Permissions extends DataObject implements TestOnly
{
2016-10-14 03:30:05 +02:00
private static $table_name = 'GridFieldTest_Permissions';
2016-10-14 03:30:05 +02:00
private static $db = [
'Name' => 'Varchar',
'Email' => 'Varchar',
];
2016-10-14 03:30:05 +02:00
private static $summary_fields = [
'Name',
'Email'
];
2016-10-14 03:30:05 +02:00
public function canView($member = null)
{
// Only records with odd numbers are viewable
if (!($this->ID % 2)) {
return false;
}
return true;
}
2016-10-14 03:30:05 +02:00
}