# vikbooking/trunk/admin/helpers/src/chat/notifiable.php

VikBooking Hotel Booking Engine &amp; PMS, version trunk. 31 lines.

- Page: https://pluginprobe.com/plugins/vikbooking/trunk/code/admin/helpers/src/chat/notifiable.php
- Raw: https://pluginprobe.com/plugins/vikbooking/trunk/raw/admin/helpers/src/chat/notifiable.php
- Modified: 2026-04-20T22:09:54+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/vikbooking/trunk/code/admin/helpers/src/chat/notifiable.php#L10-L20`.

```php
<?php
/** 
 * @package     VikBooking
 * @subpackage  core
 * @author      E4J s.r.l.
 * @copyright   Copyright (C) 2026 E4J s.r.l. All Rights Reserved.
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link        https://vikwp.com
 */

// No direct access
defined('ABSPATH') or die('No script kiddies please!');

/**
 * Chat notifiable interface.
 * 
 * @since 1.8
 */
interface VBOChatNotifiable
{
    /**
     * Schedules a message notification for the entity implementing this interface.
     * 
     * @param   VBOChatMessage  $message  The message sent.
     * @param   VBOChatUser     $user     The user that sent the message.
     * 
     * @return  void
     */
    public function scheduleNotification(VBOChatMessage $message, VBOChatUser $user);
}

```
