friendica/src/Model/Notification/Type.php

59 lines
1.8 KiB
PHP
Raw Normal View History

2020-02-04 21:03:45 +00:00
<?php
2020-02-09 14:45:36 +00:00
/**
* @copyright Copyright (C) 2020, Friendica
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2020-02-04 21:03:45 +00:00
namespace Friendica\Model\Notification;
2020-02-04 21:03:45 +00:00
/**
* Enum for different types of the Notify
*/
class Type
{
2020-02-04 21:07:10 +00:00
/** @var int Notification about a introduction */
2020-02-04 21:23:37 +00:00
const INTRO = 1;
2020-02-04 21:05:56 +00:00
/** @var int Notification about a confirmed introduction */
const CONFIRM = 2;
2020-02-04 21:07:10 +00:00
/** @var int Notification about a post on your wall */
const WALL = 4;
2020-02-04 21:09:00 +00:00
/** @var int Notification about a followup comment */
const COMMENT = 8;
2020-02-04 21:10:19 +00:00
/** @var int Notification about a private message */
const MAIL = 16;
2020-02-04 21:11:11 +00:00
/** @var int Notification about a friend suggestion */
const SUGGEST = 32;
2020-02-04 21:13:06 +00: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 21:14:42 +00:00
/** @var int Notification about being tagged
* @deprecated
*/
const TAG_SHARE = 256;
2020-02-04 21:15:33 +00:00
/** @var int Notification about getting poked/prodded/etc. */
const POKE = 512;
2020-02-04 21:21:02 +00: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 21:23:37 +00:00
/** @var int Global System notifications */
const SYSTEM = 32768;
2020-02-04 21:03:45 +00:00
}