Your IP : 10.10.0.253


Current Path : /var/www/components/com_qf3/classes/email/
Upload File :
Current File : /var/www/components/com_qf3/classes/email/json.php

<?php
/**
* @Copyright ((c) plasma-web.ru
        * @license    GPLv2 or later
        */

namespace QuickForm;

\defined('QF3_VERSION') or die;

class qfEmail_tmpl extends qfEmail
{
    public function getTmpl($project, $data, $calculator)
    {
        $html = '';
        if (! $project->params->showtitle) {
            $html .= '<h3>' . $project->title . '</h3>';
        }

        if ($project->params->showurl) {
            $html .= $this->checkUrl();
        }

        if ($project->params->calculatortype) {
            $data ['sum'] = $calculator;
        }
        $html .= json_encode($data);
        return $html;
    }
}