szurubooru/src/Models/Privilege.php

11 lines
177 B
PHP
Raw Normal View History

2013-10-06 13:21:16 +02:00
<?php
2013-10-07 23:17:33 +02:00
class Privilege extends Enum
2013-10-06 13:21:16 +02:00
{
2013-10-07 23:17:33 +02:00
const ListPosts = 1;
const UploadPost = 2;
const ViewPost = 3;
const RetrievePost = 4;
const ListUsers = 5;
const ListComments = 6;
2013-10-06 13:21:16 +02:00
}