# friends/2.7.7/templates/admin/reactions-picker.php

Friends, version 2.7.7. 22 lines.

- Page: https://pluginprobe.com/plugins/friends/2.7.7/code/templates/admin/reactions-picker.php
- Raw: https://pluginprobe.com/plugins/friends/2.7.7/raw/templates/admin/reactions-picker.php
- Modified: 2022-04-09T05:27:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/friends/2.7.7/code/templates/admin/reactions-picker.php#L10-L20`.

```php
<?php
/**
 * This contains the admin reactions picker.
 *
 * @package Friends
 */

Friends\Friends::template_loader()->get_template_part(
	'admin/add-reaction-li',
	null,
	array(
		'template' => true,
	)
);

?>
<div id="friends-reaction-picker" class="friends-reaction-picker" style="display: none">
	<?php foreach ( Friends\Reactions::get_all_emojis() as $id => $data ) : ?>
		<button data-emoji="<?php echo esc_attr( $id ); ?>" title="<?php echo esc_attr( $data->name ); ?>"><?php echo esc_html( $data->char ); ?></button>
	<?php endforeach; ?>
</div>

```
