Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conpherence/constants/ConpherenceTransactionType.php
| <?php | <?php | ||||
| /** | |||||
| * @group conpherence | |||||
| */ | |||||
| final class ConpherenceTransactionType extends ConpherenceConstants { | final class ConpherenceTransactionType extends ConpherenceConstants { | ||||
| const TYPE_FILES = 'files'; | const TYPE_FILES = 'files'; | ||||
| const TYPE_TITLE = 'title'; | const TYPE_TITLE = 'title'; | ||||
| const TYPE_PARTICIPANTS = 'participants'; | const TYPE_PARTICIPANTS = 'participants'; | ||||
| const TYPE_DATE_MARKER = 'date-marker'; | const TYPE_DATE_MARKER = 'date-marker'; | ||||
| /* these two are deprecated but keep them around for legacy installs */ | /* these two are deprecated but keep them around for legacy installs */ | ||||
| const TYPE_PICTURE = 'picture'; | const TYPE_PICTURE = 'picture'; | ||||
| const TYPE_PICTURE_CROP = 'picture-crop'; | const TYPE_PICTURE_CROP = 'picture-crop'; | ||||
| } | } | ||||