|
1
|
<?php namespace NestedPages\Entities\Confirmation; |
|
2
|
/** |
|
3
|
* Confirm Link has been deleted
|
|
4
|
*/ |
|
5
|
class LinkDeletedConfirmation implements ConfirmationInterface { |
|
6
|
|
|
7
|
public function setMessage() |
|
8
|
{ |
|
9
|
$out = __('Link successfully deleted.', 'nestedpages'); |
|
10
|
return $out; |
|
11
|
} |
|
12
|
|
|
13
|
}
|