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
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | 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>' ); $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. |