| 1 | <?php |
||
| 19 | final class ContentListEvents |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * The LIST_CRITERIA_CHANGE event occurs after list criteria are changed. |
||
| 23 | * |
||
| 24 | * @Event("SWP\Bundle\ContentBundle\Event\ContentListEvent") |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | const LIST_CRITERIA_CHANGE = 'swp.list_criteria_change'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * The POST_ITEM_ADD event occurs after adding new item to list . |
||
| 32 | * |
||
| 33 | * This event allows you to work with manually or automatically added list item. |
||
| 34 | * |
||
| 35 | * @Event("SWP\Bundle\ContentBundle\Event\ContentListEvent") |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | const POST_ITEM_ADD = 'swp.content_list.post_item_add'; |
||
| 40 | |||
| 41 | private function __construct() |
||
| 44 | } |
||
| 45 |