99871a2ff6
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 1s
Universal: Auto Version Bump / Version Bump (push) Successful in 7s
Generic: Project CI / Lint & Validate (push) Successful in 12s
Generic: Project CI / Tests (push) Has been cancelled
Generic: Repo Health / Scripts governance (push) Has been cancelled
Generic: Repo Health / Repository health (push) Has been cancelled
Generic: Repo Health / Report Issues (push) Has been cancelled
4 sub-extensions: com, system plugin, webservices, content plugin. 4 DB tables: forms, fields, submissions, notifications.
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
* @license GPL-3.0-or-later
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
?>
|
|
<div class="row">
|
|
<div class="col-lg-8">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h2><?php echo Text::_('COM_MOKOSUITEFORMS_DASHBOARD_TITLE'); ?></h2>
|
|
<p><?php echo Text::_('COM_MOKOSUITEFORMS_DASHBOARD_DESC'); ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h4><?php echo Text::_('COM_MOKOSUITEFORMS_QUICK_LINKS'); ?></h4>
|
|
<ul class="list-unstyled">
|
|
<li><a href="<?php echo $this->escape('index.php?option=com_mokosuiteforms&view=forms'); ?>"><?php echo Text::_('COM_MOKOSUITEFORMS_FORMS'); ?></a></li>
|
|
<li><a href="<?php echo $this->escape('index.php?option=com_mokosuiteforms&view=submissions'); ?>"><?php echo Text::_('COM_MOKOSUITEFORMS_SUBMISSIONS'); ?></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|