Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/administrator/components/com_convertforms/views/forms/tmpl/ |
<?php
/**
* @package Convert Forms
* @version 4.3.3 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2023 Tassos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Button\PublishedButton;
use ConvertForms\Tasks\ModelTasks;
use ConvertForms\Tasks\Apps;
JHtml::_('bootstrap.popover');
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));
if (!defined('nrJ4'))
{
JFactory::getDocument()->addScriptDeclaration('
jQuery(function($) {
Joomla.submitbutton = function(task) {
if (task == "form.add") {
jQuery("#cfSelectTemplate").modal("show");
} else {
Joomla.submitform(task, document.getElementById("adminForm"));
}
}
});
');
}
$user = JFactory::getUser();
?>
<form action="<?php echo JRoute::_('index.php?option=com_convertforms&view=forms'); ?>" class="clearfix" method="post" name="adminForm" id="adminForm">
<?php if (!defined('nrJ4')) { ?>
<div id="j-sidebar-container" class="span2">
<?php echo $this->sidebar; ?>
</div>
<?php } ?>
<div id="j-main-container">
<?php
echo JLayoutHelper::render('joomla.searchtools.default', array('view' => $this));
?>
<table class="adminlist nrTable table">
<thead>
<tr>
<th class="text-center" width="2%"><?php echo JHtml::_('grid.checkall'); ?></th>
<th width="3%" class="nowrap hidden-phone" align="center">
<?php echo JHtml::_('searchtools.sort', 'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
</th>
<th>
<?php echo JHtml::_('searchtools.sort', 'NR_NAME', 'a.name', $listDirn, $listOrder); ?>
</th>
<th width="13%">
<?php echo JText::_('COM_CONVERTFORMS_TASKS') ?>
</th>
<th width="13%" class="text-center">
<?php echo JText::_('COM_CONVERTFORMS_SAVE_DATA') ?>
</th>
<th width="13%" class="text-center">
<?php echo JHtml::_('searchtools.sort', 'COM_CONVERTFORMS_SUBMISSIONS', 'leads', $listDirn, $listOrder); ?>
</th>
<th width="20%" class="text-center"></th>
<th width="5%" class="nowrap text-center hidden-phone">
<?php echo JHtml::_('searchtools.sort', 'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder); ?>
</th>
</tr>
</thead>
<tbody>
<?php if (count($this->items)) { ?>
<?php foreach($this->items as $i => $item): ?>
<?php
$leads = \ConvertForms\Form::getSubmissionsTotal($item->id);
$canChange = $user->authorise('core.edit.state', 'com_convertforms.form.' . $item->id);
$leadsURL = JURI::base() . 'index.php?option=com_convertforms&view=conversions&filter.period&filter.form_id='. $item->id;
?>
<tr class="row<?php echo $i % 2; ?>">
<td class="text-center"><?php echo JHtml::_('grid.id', $i, $item->id); ?></td>
<td class="text-center">
<?php if (defined('nrJ4')) { ?>
<?php
$options = [
'task_prefix' => 'forms.',
'disabled' => !$canChange,
'id' => 'state-' . $item->id
];
echo (new PublishedButton)->render((int) $item->state, $i, $options);
?>
<?php } else { ?>
<div class="btn-group">
<?php echo JHtml::_('jgrid.published', $item->state, $i, 'forms.', $canChange); ?>
<?php
if ($canChange && !defined('nrJ4'))
{
JHtml::_('actionsdropdown.' . ((int) $item->state === -2 ? 'un' : '') . 'trash', 'cb' . $i, 'forms');
JHtml::_('actionsdropdown.' . 'duplicate', 'cb' . $i, 'forms');
echo JHtml::_('actionsdropdown.render', $this->escape($item->name));
}
?>
</div>
<?php } ?>
</td>
<td>
<a href="<?php echo JRoute::_('index.php?option=com_convertforms&task=form.edit&id='.$item->id); ?>" title="<?php echo JText::_('JACTION_EDIT'); ?>"><?php echo $this->escape($item->name); ?>
</a>
</td>
<td>
<?php
$appsAll = [];
$appsFirst5 = [];
if ($tasks = ModelTasks::getItems($item->id))
{
$apps = array_map(function($task)
{
return $task['state'] == '1' ? $task['app'] : null;
}, $tasks);
$appsAll = array_unique(array_filter($apps));
$appsFirst5 = array_slice($appsAll, 0, 5, true);
}
?>
<?php if ($appsFirst5) { ?>
<div class="tasksLogoList">
<?php
foreach ($appsFirst5 as $app)
{
$appClass = Apps::getApp($app);
echo '<img alt="' . $appClass->lang('ALIAS') . '" src="' . $appClass->getLogo() . '"/>';
}
?>
<?php if (count($appsAll) > count($appsFirst5)) { ?>
<span>...</span>
<?php } ?>
</div>
<?php } ?>
</td>
<td class="text-center">
<?php
$saveToDb = isset($item->save_data_to_db) ? $item->save_data_to_db : true;
?>
<span title="<?php echo JText::_('COM_CONVERTFORMS_SAVE_DATA_' . (int) $saveToDb) ?> ">
<?php echo JText::_($saveToDb ? 'JYES' : 'JNO'); ?>
</span>
</td>
<td class="text-center">
<?php
$total = number_format($leads);
?>
<a href="<?php echo $leadsURL ?>">
<span class="badge badge-info bg-info hasPopover" data-placement="top" data-content="<?php echo JText::sprintf("COM_CONVERTFORMS_FORM_LEADS", $total) ?>">
<?php echo $total; ?>
</span>
</a>
</td>
<td class="text-center">
<ul class="item-icons">
<li>
<a class="hasPopover <?php echo ($leads == 0) ? "disabled" : "" ?>"
data-placement="top"
data-content="<?php echo JText::_("COM_CONVERTFORMS_VIEW_LEADS") ?>"
href="<?php echo JURI::base() ?>index.php?option=com_convertforms&view=conversions&filter.form_id=<?php echo $item->id ?>&filter.state"><span class="icon icon-users"></span>
</a>
</li>
<li>
<a class="hasPopover"
data-placement="top"
data-content="<?php echo JText::_("COM_CONVERTFORMS_FORM_CREATE_MODULE") ?>"
href="<?php echo JURI::base() ?>index.php?option=com_modules&task=module.add&eid=<?php echo $this->moduleID ?>">
<span class="icon icon-cube"></span>
</a>
</li>
<li>
<a class="hasPopover copyToClipboard"
data-clipboard="{convertforms <?php echo $item->id ?>}"
data-placement="top"
data-content="<?php echo JText::sprintf("COM_CONVERTFORMS_FORM_CLIPBOARD_SHORTCODE", "{convertforms ".$item->id."}") ?>"
href='#'>
<span class="icon icon-link disable-click"></span>
</a>
</li>
</ul>
</td>
<td class="text-center"><?php echo $item->id ?></td>
</tr>
<?php endforeach; ?>
<?php } else { ?>
<tr>
<td align="center" colspan="9">
<div align="center">
<?php echo ConvertForms\Helper::noItemsFound("forms"); ?>
-
<a href="javascript://" onclick="Joomla.submitbutton('form.add')"><?php echo JText::_("COM_CONVERTFORMS_CREATE_NEW") ?></a>
</div>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<?php echo $this->pagination->getListFooter(); ?>
<div>
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<?php echo JHtml::_('form.token'); ?>
</div>
</div>
</form>
<?php include_once(JPATH_COMPONENT_ADMINISTRATOR . '/layouts/footer.php'); ?>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.addEventListener("click", function(e) {
if (!e.target.classList.contains("copyToClipboard")) {
return;
}
e.preventDefault();
var data = e.target.dataset.clipboard;
copyTextToClipboard(data, function(success) {
if (success) {
Joomla.renderMessages({"success": ["Shortcode " + data + " copied to clipboard"]});
}
});
});
function copyTextToClipboard(text, callback) {
var textArea = document.createElement("textarea");
textArea.style.position = 'fixed';
textArea.style.top = 0;
textArea.style.left = 0;
textArea.style.width = '2em';
textArea.style.height = '2em';
textArea.style.background = 'transparent';
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();
try {
var success = document.execCommand('copy');
callback(success);
} catch (err) {
callback(false);
}
document.body.removeChild(textArea);
}
})
</script>