/
home
/
assocoweys
/
sompe
/
administrator
/
components
/
com_convertforms
/
views
/
convertforms
/
tmpl
/
Upload File
HOME
<?php /** * @package Convert Forms * @version 5.0.2 Pro * * @author Tassos Marinos <info@tassos.gr> * @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ defined('_JEXEC') or die('Restricted access'); use ConvertForms\Analytics; use Joomla\CMS\Language\Text; ?> <table width="100%" class="table nrTable"> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_LAST_YEAR") ?></td> <td class="text-right"><?php echo Analytics::getRows('last_year') ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_THIS_YEAR") ?></td> <td class="text-right"><?php echo Analytics::getRows('this_year') ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_LAST_MONTH") ?></td> <td class="text-right"><?php echo Analytics::getRows('last_month') ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_THIS_MONTH") ?></td> <td class="text-right"><?php echo Analytics::getRows('this_month') ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_LAST_7_DAYS") ?></td> <td class="text-right"><?php echo Analytics::getRows('range', ['created_from' => '-7 day', 'created_to' => 'now']) ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_YESTERDAY") ?></td> <td class="text-right"><?php echo Analytics::getRows('yesterday') ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_TODAY") ?></td> <td class="text-right"><?php echo Analytics::getRows('today') ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_AVG_DAY") ?></td> <td class="text-right"><?php echo Analytics::getLeadsAverageThisMonth() ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_PROJECTION") ?></td> <td class="text-right"><?php echo Analytics::getMonthProjection(); ?></td> </tr> <tr> <td><?php echo Text::_("COM_CONVERTFORMS_TOTAL") ?></td> <td class="text-right"><?php echo Analytics::getRows(); ?></td> </tr> </table>