mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
28 lines
551 B
PHP
28 lines
551 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Forms\Tests\GridField\GridFieldTest;
|
||
|
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
|
||
|
class Permissions extends DataObject implements TestOnly {
|
||
|
|
||
|
private static $table_name = 'GridFieldTest_Permissions';
|
||
|
|
||
|
private static $db = array(
|
||
|
'Name' => 'Varchar',
|
||
|
'Email' => 'Varchar',
|
||
|
);
|
||
|
|
||
|
private static $summary_fields = array(
|
||
|
'Name',
|
||
|
'Email'
|
||
|
);
|
||
|
|
||
|
public function canView($member = null) {
|
||
|
// Only records with odd numbers are viewable
|
||
|
if(!($this->ID % 2)){ return false; }
|
||
|
return true;
|
||
|
}
|
||
|
}
|