ConfirmationFactory.php
8 years ago
ConfirmationInterface.php
8 years ago
LinkDeletedConfirmation.php
6 years ago
TrashConfirmation.php
5 years ago
TrashRestoredConfirmation.php
5 years ago
TrashRestoredConfirmation.php
15 lines
| 1 | <?php |
| 2 | namespace NestedPages\Entities\Confirmation; |
| 3 | |
| 4 | /** |
| 5 | * Confirm page(s) restored from trash |
| 6 | */ |
| 7 | class TrashRestoredConfirmation implements ConfirmationInterface |
| 8 | { |
| 9 | public function setMessage() |
| 10 | { |
| 11 | $count = intval(sanitize_text_field($_GET['untrashed'])); |
| 12 | return sprintf( esc_html( _n( '%d item restored from trash.', '%d items restored from trash.', $count, 'wp-nested-pages' ) ), $count ); |
| 13 | } |
| 14 | } |
| 15 |