| 1 | <?php |
||
| 16 | trait EmptySummaryAwareTrait |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The empty summary notice. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $emptySummaryNotice; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @see \Core\Form\EmptySummaryAwareInterface::isSummaryEmpty() |
||
| 28 | */ |
||
| 29 | public function isSummaryEmpty() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @see \Core\Form\EmptySummaryAwareInterface::setEmptySummaryNotice() |
||
| 41 | */ |
||
| 42 | public function setEmptySummaryNotice($message) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @see \Core\Form\EmptySummaryAwareInterface::getEmptySummaryNotice() |
||
| 50 | */ |
||
| 51 | public function getEmptySummaryNotice() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return string |
||
| 62 | */ |
||
| 63 | protected function getDefaultEmptySummaryNotice() |
||
| 67 | } |
||
| 68 |