6 lines
240 B
PHP
6 lines
240 B
PHP
<?php
|
|
define('MSZ_NEWS_PERM_MANAGE_POSTS', 1);
|
|
define('MSZ_NEWS_PERM_MANAGE_CATEGORIES', 1 << 1);
|
|
define('MSZ_NEWS_PERM_DELETE_COMMENTS', 1 << 2);
|
|
define('MSZ_NEWS_PERM_EDIT_COMMENTS', 1 << 3);
|
|
define('MSZ_NEWS_PERM_PIN_COMMENTS', 1 << 4);
|