1: <?php
2: /**
3: * @author Jefferson González
4: * @license MIT
5: * @link http://github.com/peg-org/peg-src Source code.
6: */
7:
8: namespace Peg\Lib\Signals\Type;
9:
10: /**
11: * Container for the various signal types sent by the definitions namespace.
12: */
13: class Definitions
14: {
15: /**
16: * Signal sent by the definitions importer that can be used in a GUI
17: * frontend to display the current actions performed by the importer.
18: * @see \Peg\Lib\Definitions\Importer
19: * @see \Peg\Lib\Signals\Data\Definitions\ImportMessage
20: */
21: const IMPORT_MESSAGE = "definitions_import_message";
22:
23: /**
24: * Signal sent by the definitions exporter that can be used in a GUI
25: * frontend to display the current actions performed by the exporter.
26: * @see \Peg\Lib\Definitions\Exporter
27: * @see \Peg\Lib\Signals\Data\Definitions\ExportMessage
28: */
29: const EXPORT_MESSAGE = "definitions_export_message";
30: }