File "NotificationParser.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/app/Services/FormBuilder/NotificationParser.php
File size: 1.19 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FluentForm\App\Services\FormBuilder;

use FluentForm\App\Services\FormBuilder\ShortCodeParser;

class NotificationParser
{
    protected static $cache = null;

    /**
     * Parse Norifications
     *
     * @param array  $notifications
     * @param int    $insertId
     * @param array  $data
     * @param object $form
     *
     * @return bool $cache
     */
    public static function parse($notifications, $insertId, $data, $form, $cache = true)
    {
        if ($cache && ! is_null(static::$cache)) {
            return static::$cache;
        }

        foreach ($notifications as &$notification) {
            static::setRecepient($notification, $data);

            $notification = ShortCodeParser::parse(
                $notification,
                $insertId,
                $data,
                $form
            );
        }

        return $cache ? (static::$cache = $notifications) : $notifications;
    }

    protected static function setRecepient(&$notification, $data)
    {
        if (isset($notification['sendTo']) && 'field' == $notification['sendTo']['type']) {
            $notification['sendTo']['email'] = $data[$notification['sendTo']['field']];
        }
    }
}