LLMS_Admin_Tool_Limited_Billing_Order_Locator::get_description()
Retrieve a description of the tool.
Description Description
This is displayed on the right side of the tool’s list before the button.
Return Return
(string)
Source Source
File: includes/admin/tools/class-llms-admin-tool-limited-billing-order-locator.php
protected function get_description() {
$count = count( $this->get_csv() );
$desc = sprintf(
// Translators: %1$s = opening anchor link to documentation; %2$s = closing anchor link.
__( 'The method used to determine when a limited-billing recurring order has completed its payment plan changed during version 5.3.0. This tool provides a report of orders which may been affected by this change. %1$sRead more%2$s about this change.', 'lifterlms' ),
'<a href="https://lifterlms.com/docs/payment-plan-orders-530/" target="_blank">',
'</a>'
);
$desc .= ' ';
// Translators: %d = the number of pending batches.
$desc .= sprintf(
_n(
'There is %d order that should be reviewed.',
'There are %d orders that should be reviewed.',
$count,
'lifterlms'
),
$count
);
return $desc;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.3.0 | Introduced. |