protected function MandrillTemplateMapUIController::overviewTableRow in Mandrill 7
Same name and namespace in other branches
- 7.2 modules/mandrill_template/lib/mandrill_template_map.ui_controller.inc \MandrillTemplateMapUIController::overviewTableRow()
Overrides EntityDefaultUIController::overviewTableRow().
Overrides EntityDefaultUIController::overviewTableRow
File
- modules/
mandrill_template/ lib/ mandrill_template_map.ui_controller.inc, line 36 - The UI controller for the template map entity.
Class
- MandrillTemplateMapUIController
- Override EntityDefaultUIController to customize our menu items.
Code
protected function overviewTableRow($conditions, $id, $entity, $additional_cols = array()) {
$additional_cols[] = $entity->template_id;
$additional_cols[] = $entity->main_section;
$additional_cols[] = $entity->mailsystem_key;
return parent::overviewTableRow($conditions, $id, $entity, $additional_cols);
}