You could do a scrollable list if there would be to much of them. I think there is already an extension for that for the smilies.
Then please include a switch, button whatever to allow complete blocking of that feature. I fully agree with smilies and wouldn't want to lose that, but emoji's are going a bit too far from: nowadays people can't talk anymore, let alone show a sincere expression unless (or perhaps I should state: not even with) emojicoticon(itwits).3Di wrote: ↑Thu Jan 11, 2018 12:04 amI voted yes, that's why:
https://tracker.phpbb.com/browse/PHPBB3-14963
That's a must have IMHO.
Emojis can be intelligent?
Code: Select all
$aEmoji= array
( 0x2605=> 'Black star'
, 0x1F427=> 'Penguin'
, 0x1F4A9=> 'Pile of poo'
, 0x1F606=> 'Smiling face with open mouth and tightly-closed eyes'
);
foreach( $aEmoji as $iEmoji=> $sEmoji )
$template-> assign_block_vars
( 'emoji', array
( 'CODE'=> '&#'. $iEmoji. ';'
, 'TITLE'=> $sEmoji
)
);
This looks dope thanks for thatAmigoJack wrote: ↑Fri Jan 26, 2018 9:05 amIn my board I optimized the editor layout and filled the free space with a list of symbols (not only emojis), which appears just under the smileys and is also scrollable:
20180126 emojis.png
Best part is: I'm not using any libraries to re-interpret the symbols by pictures - they're displayed just like the chosen font supports it. The code is as simple as this (shortened):Code: Select all
$aEmoji= array ( 0x2605=> 'Black star' , 0x1F427=> 'Penguin' , 0x1F4A9=> 'Pile of poo' , 0x1F606=> 'Smiling face with open mouth and tightly-closed eyes' ); foreach( $aEmoji as $iEmoji=> $sEmoji ) $template-> assign_block_vars ( 'emoji', array ( 'CODE'=> '&#'. $iEmoji. ';' , 'TITLE'=> $sEmoji ) );