public function CertificateEntityUIController::overviewTable in Certificate 7.3
Same name and namespace in other branches
- 8.3 certificate.classes.inc \CertificateEntityUIController::overviewTable()
Override the table that comes from EntityDefaultUIController so we can sort it by label.
Overrides EntityDefaultUIController::overviewTable
File
- ./certificate.classes.inc, line 24 
Class
- CertificateEntityUIController
- Custom Entity admin
Code
public function overviewTable($conditions = array()) {
  $table = parent::overviewTable($conditions);
  uasort($table['#rows'], array(
    $this,
    'labelSorter',
  ));
  return $table;
}