'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; } }