friendica/src/Model/Notify/Type.php

37 lines
1 KiB
PHP
Raw Normal View History

2020-02-04 22:03:45 +01:00
<?php
namespace Friendica\Model\Notify;
/**
* Enum for different types of the Notify
*/
class Type
{
2020-02-04 22:07:10 +01:00
/** @var int Notification about a introduction */
2020-02-04 22:03:45 +01:00
const INTRO = 1;
2020-02-04 22:05:56 +01:00
/** @var int Notification about a confirmed introduction */
const CONFIRM = 2;
2020-02-04 22:07:10 +01:00
/** @var int Notification about a post on your wall */
const WALL = 4;
2020-02-04 22:09:00 +01:00
/** @var int Notification about a followup comment */
const COMMENT = 8;
2020-02-04 22:10:19 +01:00
/** @var int Notification about a private message */
const MAIL = 16;
2020-02-04 22:11:11 +01:00
/** @var int Notification about a friend suggestion */
const SUGGEST = 32;
2020-02-04 22:13:06 +01:00
/** @var int Unknown Notification
* @deprecated
*/
const PROFILE = 64;
/** @var int Notification about being tagged in a post */
const TAG_SELF = 128;
2020-02-04 22:14:42 +01:00
/** @var int Notification about being tagged
* @deprecated
*/
const TAG_SHARE = 256;
2020-02-04 22:15:33 +01:00
/** @var int Notification about getting poked/prodded/etc. */
const POKE = 512;
2020-02-04 22:21:02 +01:00
/** @var int Notification about either a contact had posted something directly or the contact is a mentioned forum */
const SHARE = 1024;
2020-02-04 22:03:45 +01:00
}