protected function GdprConsentAgreementEntityUIController::overviewTableHeaders in General Data Protection Regulation 7
Generates the table headers for the overview table.
Overrides EntityDefaultUIController::overviewTableHeaders
File
- modules/
gdpr_consent/ gdpr_consent.module, line 810 - Contains hook implementations and shared functions.
Class
- GdprConsentAgreementEntityUIController
- Custom UI controller for the gdpr_consent_agreement entity type.
Code
protected function overviewTableHeaders($conditions, $rows, $additional_header = array()) {
$additional_header = array(
t('Type'),
);
return parent::overviewTableHeaders($conditions, $rows, $additional_header);
}