<?php /** * @package RSForm! Pro * @copyright (c) 2007-2019 www.rsjoomla.com * @link https://www.rsjoomla.com * @license GNU General Public License http://www.gnu.org/licenses/gpl-3.0.en.html */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; ?> <div class="<?php echo RSFormProAdapterGrid::row(); ?>"> <div class="<?php echo RSFormProAdapterGrid::column(10); ?>"> <fieldset class="form-horizontal"> <legend class="rsfp-legend"><?php echo Text::_('COM_RSFORM_DELETION_EMAIL'); ?></legend> <div class="alert alert-info"><?php echo Text::_('COM_RSFORM_DELETION_EMAIL_DESC'); ?></div> <legend class="rsfp-legend"><?php echo Text::_('RSFP_EMAILS_LEGEND_SENDER'); ?></legend> <?php echo $this->jform->renderFieldset('deletion_email_sender'); ?> <legend class="rsfp-legend"><?php echo Text::_('RSFP_EMAILS_LEGEND_RECIPIENT'); ?></legend> <?php echo $this->jform->renderFieldset('deletion_email_recipient'); ?> <legend class="rsfp-legend"><?php echo Text::_('RSFP_EMAILS_LEGEND_CONTENTS'); ?></legend> <?php echo $this->jform->renderFieldset('deletion_email_contents'); ?> <?php $this->triggerEvent('onRsformBackendAfterShowDeletionEmail'); ?> </fieldset> </div> <div class="<?php echo RSFormProAdapterGrid::column(2); ?>"> <button class="btn btn-secondary" type="button" onclick="toggleQuickAdd();"><?php echo Text::_('RSFP_TOGGLE_QUICKADD'); ?></button> <div class="QuickAdd"> <h3><?php echo Text::_('RSFP_QUICK_ADD');?></h3> <?php echo RSFormProHelper::generateQuickAddGlobal(); foreach ($this->quickfields as $field) { echo RSFormProHelper::generateQuickAdd($field, 'display'); } ?> </div> </div> </div>