# give/4.17.0/src/Donors/ListTable/Columns/DonationRevenueColumn.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 55 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/Donors/ListTable/Columns/DonationRevenueColumn.php
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/Donors/ListTable/Columns/DonationRevenueColumn.php
- Modified: 2025-10-29T20:17:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.17.0/code/src/Donors/ListTable/Columns/DonationRevenueColumn.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Give\Donors\ListTable\Columns;

use Give\Donors\Models\Donor;
use Give\Framework\ListTable\ModelColumn;

/**
 * @since 4.12.0 add sort column
 * @since 2.24.0
 *
 * @extends ModelColumn<Donor>
 */
class DonationRevenueColumn extends ModelColumn
{
    protected $sortColumn = 'CAST(totalAmountDonated AS DECIMAL)';

    /**
     * @since 2.24.0
     *
     * @inheritDoc
     */
    public static function getId(): string
    {
        return 'donationRevenue';
    }

    /**
     * @since 2.24.0
     *
     * @inheritDoc
     */
    public function getLabel(): string
    {
        return __('Total Given', 'give');
    }

    /**
     * @since 2.24.0
     *
     * @inheritDoc
     *
     * @param Donor $model
     */
    public function getCellValue($model, $locale = ''): string
    {
        return sprintf(
            '<div class="amount"><span>%s</span></div>',
            $model->totalAmountDonated->formatToLocale($locale)
        );
    }
}

```
