*/ class ShortcodeColumn extends ModelColumn { /** * @since 2.24.0 * * @inheritDoc */ public static function getId(): string { return 'shortcode'; } /** * @since 2.24.0 * * @inheritDoc */ public function getLabel(): string { return __('Shortcode', 'give'); } /** * @since 2.24.0 * * @inheritDoc * * @param DonationForm $model */ public function getCellValue($model): string { return sprintf( '
[give_form id="%d"]
', $model->id ); } }