*/ class DonorColumn extends ModelColumn { protected $sortColumn = 'donorName'; /** * @since 2.24.0 * * @inheritDoc */ public static function getId(): string { return 'donor'; } /** * @since 2.24.0 * * @inheritDoc */ public function getLabel(): string { return __('Donor name', 'give'); } /** * @since 2.24.0 * * @inheritDoc * * @param Subscription $model */ public function getCellValue($model): string { $name = array_filter([ $model->donor->firstName, $model->donor->lastName, ]); return sprintf( '%s', admin_url("edit.php?post_type=give_forms&page=give-donors&view=overview&id=$model->donorId"), __('View donor information', 'give'), trim(implode(' ', $name)) ); } }