✨ Add some other post kinds
This commit is contained in:
parent
8b18b8758c
commit
742e7d083b
1 changed files with 5 additions and 2 deletions
|
@ -113,17 +113,20 @@ $GLOBALS['ALLOWED_IMG_EXTENSION'] = array('gif', 'png', 'jpg', 'jpeg', 'svg', 'w
|
||||||
$GLOBALS['ALLOWED_IMG_MIMETYPES'] = array('image/gif', 'image/png', 'image/jpeg', 'image/svg+xml', 'image/webp');
|
$GLOBALS['ALLOWED_IMG_MIMETYPES'] = array('image/gif', 'image/png', 'image/jpeg', 'image/svg+xml', 'image/webp');
|
||||||
|
|
||||||
// Supported post kinds
|
// Supported post kinds
|
||||||
$GLOBALS['POST_KINDS'] = array('article', 'note', 'photo', 'reply', 'bookmark', 'like', 'review');
|
$GLOBALS['POST_KINDS'] = array('article', 'note', 'photo', 'video', 'audio', 'reply', 'bookmark', 'like', 'art', 'literature', 'review', 'event', 'chicken');
|
||||||
|
|
||||||
$GLOBALS['POST_KINDS_EMOJI'] = array(
|
$GLOBALS['POST_KINDS_EMOJI'] = array(
|
||||||
"article"=>'📄',
|
"article"=>'📄',
|
||||||
'note'=>'📔',
|
'note'=>'📔',
|
||||||
'photo'=>'📷',
|
'photo'=>'📷',
|
||||||
|
'art'=>'🎨',
|
||||||
|
'event'=>'📅',
|
||||||
'video'=>'🎥',
|
'video'=>'🎥',
|
||||||
'audio'=>'🎤',
|
'audio'=>'🎤',
|
||||||
'reply'=>'💬',
|
'reply'=>'💬',
|
||||||
'bookmark'=>'🔖',
|
'bookmark'=>'🔖',
|
||||||
'like'=>'👍',
|
'like'=>'👍',
|
||||||
'review'=>'⭐️',
|
'review'=>'⭐️',
|
||||||
'chicken'=>'🐔'
|
'chicken'=>'🐔',
|
||||||
|
'literature'=>'📕'
|
||||||
);
|
);
|
Loading…
Add table
Reference in a new issue