delete lib/emoji.php
This commit is contained in:
parent
191c558366
commit
fea0e9eb53
@ -1,207 +0,0 @@
|
|||||||
<?php
|
|
||||||
function get_emojis_with_labels(): array {
|
|
||||||
return [
|
|
||||||
'faces' => [
|
|
||||||
['😀', 'grinning face'],
|
|
||||||
['😄', 'grinning face with smiling eyes'],
|
|
||||||
['😁', 'beaming face with smiling eyes'],
|
|
||||||
['😆', 'grinning squinting face'],
|
|
||||||
['😅', 'grinning face with sweat'],
|
|
||||||
['😂', 'face with tears of joy'],
|
|
||||||
['🤣', 'rolling on the floor laughing'],
|
|
||||||
['😊', 'smiling face with smiling eyes'],
|
|
||||||
['😇', 'smiling face with halo'],
|
|
||||||
['🙂', 'slightly smiling face'],
|
|
||||||
['🙃', 'upside-down face'],
|
|
||||||
['😉', 'winking face'],
|
|
||||||
['😌', 'relieved face'],
|
|
||||||
['😍', 'smiling face with heart-eyes'],
|
|
||||||
['🥰', 'smiling face with hearts'],
|
|
||||||
['😘', 'face blowing a kiss'],
|
|
||||||
['😗', 'kissing face'],
|
|
||||||
['😚', 'kissing face with closed eyes'],
|
|
||||||
['😋', 'face savoring food'],
|
|
||||||
['😛', 'face with tongue'],
|
|
||||||
['😜', 'winking face with tongue'],
|
|
||||||
['😝', 'squinting face with tongue'],
|
|
||||||
['🤪', 'zany face'],
|
|
||||||
['🦸', 'superhero'],
|
|
||||||
['🦹', 'supervillain'],
|
|
||||||
['🧙', 'mage'],
|
|
||||||
['🧛', 'vampire'],
|
|
||||||
['🧟', 'zombie'],
|
|
||||||
['🧞', 'genie'],
|
|
||||||
],
|
|
||||||
'gestures' => [
|
|
||||||
['👋', 'waving hand'],
|
|
||||||
['🖖', 'vulcan salute'],
|
|
||||||
['👌', 'OK hand'],
|
|
||||||
['🤌', 'pinched fingers'],
|
|
||||||
['✌️', 'victory hand'],
|
|
||||||
['🤞', 'crossed fingers'],
|
|
||||||
['🤟', 'love-you gesture'],
|
|
||||||
['🤘', 'sign of the horns'],
|
|
||||||
['🤙', 'call me hand'],
|
|
||||||
['👍', 'thumbs up'],
|
|
||||||
['👎', 'thumbs down'],
|
|
||||||
['✊', 'raised fist'],
|
|
||||||
['👊', 'oncoming fist'],
|
|
||||||
],
|
|
||||||
'nature' => [
|
|
||||||
['☀️', 'sun'],
|
|
||||||
['⛅', 'sun behind cloud'],
|
|
||||||
['🌧️', 'cloud with rain'],
|
|
||||||
['🌨️', 'cloud with snow'],
|
|
||||||
['❄️', 'snowflake'],
|
|
||||||
['🌩️', 'cloud with lightning'],
|
|
||||||
['🌪️', 'tornado'],
|
|
||||||
['🌈', 'rainbow'],
|
|
||||||
['🔥', 'fire'],
|
|
||||||
['💧', 'droplet'],
|
|
||||||
['🌊', 'water wave'],
|
|
||||||
['🌫️', 'fog'],
|
|
||||||
['🌬️', 'wind face'],
|
|
||||||
['🍂', 'fallen leaf'],
|
|
||||||
['🌵', 'cactus'],
|
|
||||||
['🌴', 'palm tree'],
|
|
||||||
['🌸', 'cherry blossom'],
|
|
||||||
],
|
|
||||||
'animals' => [
|
|
||||||
['🐶', 'dog face'],
|
|
||||||
['🐱', 'cat face'],
|
|
||||||
['🐭', 'mouse face'],
|
|
||||||
['🐹', 'hamster face'],
|
|
||||||
['🐰', 'rabbit face'],
|
|
||||||
['🦊', 'fox face'],
|
|
||||||
['🐻', 'bear face'],
|
|
||||||
['🐼', 'panda face'],
|
|
||||||
['🐨', 'koala'],
|
|
||||||
['🐯', 'tiger face'],
|
|
||||||
['🦁', 'lion face'],
|
|
||||||
['🐮', 'cow face'],
|
|
||||||
['🐷', 'pig face'],
|
|
||||||
['🐸', 'frog face'],
|
|
||||||
['🐵', 'monkey face'],
|
|
||||||
['🐔', 'chicken'],
|
|
||||||
['🐧', 'penguin'],
|
|
||||||
['🐦', 'bird'],
|
|
||||||
['🐣', 'hatching chick'],
|
|
||||||
['🐺', 'wolf face'],
|
|
||||||
['🦄', 'unicorn face'],
|
|
||||||
],
|
|
||||||
'hearts' => [
|
|
||||||
['❤️', 'red heart'],
|
|
||||||
['🧡', 'orange heart'],
|
|
||||||
['💛', 'yellow heart'],
|
|
||||||
['💚', 'green heart'],
|
|
||||||
['💙', 'blue heart'],
|
|
||||||
['💜', 'purple heart'],
|
|
||||||
['🖤', 'black heart'],
|
|
||||||
['🤍', 'white heart'],
|
|
||||||
['🤎', 'brown heart'],
|
|
||||||
['💖', 'sparkling heart'],
|
|
||||||
['💗', 'growing heart'],
|
|
||||||
['💓', 'beating heart'],
|
|
||||||
['💞', 'revolving hearts'],
|
|
||||||
['💕', 'two hearts'],
|
|
||||||
['💘', 'heart with arrow'],
|
|
||||||
['💝', 'heart with ribbon'],
|
|
||||||
['💔', 'broken heart'],
|
|
||||||
['❣️', 'heart exclamation'],
|
|
||||||
],
|
|
||||||
'activities' => [
|
|
||||||
['🚴', 'person biking'],
|
|
||||||
['🚵', 'person mountain biking'],
|
|
||||||
['🏃', 'person running'],
|
|
||||||
['🏋️', 'person lifting weights'],
|
|
||||||
['🏊', 'person swimming'],
|
|
||||||
['🏄', 'person surfing'],
|
|
||||||
['🚣', 'person rowing boat'],
|
|
||||||
['🤸', 'person cartwheeling'],
|
|
||||||
['🧘', 'person in lotus position'],
|
|
||||||
['🧗', 'person climbing'],
|
|
||||||
['🏕️', 'camping'],
|
|
||||||
['🎣', 'fishing pole'],
|
|
||||||
['🎿', 'skis'],
|
|
||||||
['🏂', 'snowboarder'],
|
|
||||||
['🛹', 'skateboard'],
|
|
||||||
['🧺', 'basket'],
|
|
||||||
['🎯', 'bullseye'],
|
|
||||||
],
|
|
||||||
'hobbies' => [
|
|
||||||
['📚', 'books'],
|
|
||||||
['📖', 'open book'],
|
|
||||||
['🎧', 'headphone'],
|
|
||||||
['🎵', 'musical note'],
|
|
||||||
['🎤', 'microphone'],
|
|
||||||
['🎷', 'saxophone'],
|
|
||||||
['🎸', 'guitar'],
|
|
||||||
['🎹', 'musical keyboard'],
|
|
||||||
['🎺', 'trumpet'],
|
|
||||||
['🎻', 'violin'],
|
|
||||||
['🪕', 'banjo'],
|
|
||||||
['✍️', 'writing hand'],
|
|
||||||
['📝', 'memo'],
|
|
||||||
['📷', 'camera'],
|
|
||||||
['🎨', 'artist palette'],
|
|
||||||
['🧵', 'thread'],
|
|
||||||
['🧶', 'yarn'],
|
|
||||||
['🪡', 'sewing needle'],
|
|
||||||
['📹', 'video camera'],
|
|
||||||
['🎬', 'clapper board'],
|
|
||||||
],
|
|
||||||
'food' => [
|
|
||||||
['🍎', 'red apple'],
|
|
||||||
['🍌', 'banana'],
|
|
||||||
['🍇', 'grapes'],
|
|
||||||
['🍓', 'strawberry'],
|
|
||||||
['🍉', 'watermelon'],
|
|
||||||
['🍍', 'pineapple'],
|
|
||||||
['🥭', 'mango'],
|
|
||||||
['🍑', 'peach'],
|
|
||||||
['🍒', 'cherries'],
|
|
||||||
['🍅', 'tomato'],
|
|
||||||
['🥦', 'broccoli'],
|
|
||||||
['🥕', 'carrot'],
|
|
||||||
['🌽', 'ear of corn'],
|
|
||||||
['🥔', 'potato'],
|
|
||||||
['🍞', 'bread'],
|
|
||||||
['🥐', 'croissant'],
|
|
||||||
['🥖', 'baguette bread'],
|
|
||||||
['🧀', 'cheese wedge'],
|
|
||||||
['🍕', 'pizza'],
|
|
||||||
['🍔', 'hamburger'],
|
|
||||||
['🍟', 'french fries'],
|
|
||||||
['🌭', 'hot dog'],
|
|
||||||
['🍣', 'sushi'],
|
|
||||||
],
|
|
||||||
'vibes' => [
|
|
||||||
['💤', 'zzz'],
|
|
||||||
['🤯', 'exploding head'],
|
|
||||||
['😱', 'face screaming in fear'],
|
|
||||||
['🥵', 'hot face'],
|
|
||||||
['🥶', 'cold face'],
|
|
||||||
['🤬', 'face with symbols on mouth'],
|
|
||||||
['🤨', 'face with raised eyebrow'],
|
|
||||||
],
|
|
||||||
'tech' => [
|
|
||||||
['💻', 'laptop'],
|
|
||||||
['📞', 'telephone receiver'],
|
|
||||||
['🔋', 'battery'],
|
|
||||||
['💿', 'optical disk'],
|
|
||||||
['🕹️', 'joystick'],
|
|
||||||
['🔍', 'magnifying glass tilted left'],
|
|
||||||
['📈', 'chart increasing'],
|
|
||||||
],
|
|
||||||
'travel' => [
|
|
||||||
['✈️', 'airplane'],
|
|
||||||
['🚗', 'automobile'],
|
|
||||||
['🚕', 'taxi'],
|
|
||||||
['🚲', 'bicycle'],
|
|
||||||
['🛴', 'kick scooter'],
|
|
||||||
['⛵', 'sailboat'],
|
|
||||||
],
|
|
||||||
|
|
||||||
//'custom' => get_user_emojis($db),
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user