Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
search /
j2store /
elements /
Delete
Unzip
Name
Size
Permission
Date
Action
index.html
31
B
-rwxr-xr-x
2022-02-20 10:42
j2storemenuitem.php
1.11
KB
-rwxr-xr-x
2022-02-20 10:42
Save
Rename
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ /** ensure this file is being included by a parent file */ defined('_JEXEC') or die('Restricted access'); jimport('joomla.form.formfield'); class JFormFieldJ2StoreMenuItem extends JFormField { protected $type = 'J2storemenuitem'; /** * Method to get the field input markup. * * @return string The field input markup. * @since 1.6 */ protected function getInput() { $app = JFactory::getApplication(); $options = array(); $module_id = $app->input->getInt('id'); $menus =JMenu::getInstance('site'); $menu_id = null; $menuItems = array(); $options[''] = JText::_("J2STORE_SELECT_OPTION"); foreach($menus->getMenu() as $item) { if($item->type== 'component'){ if(isset($item->query['option']) && $item->query['option'] == 'com_j2store' ){ if(isset($item->query['catid'])){ $options[$item->id] = $item->title; } } } } return JHTML::_('select.genericlist', $options, $this->name, array('class'=>"input"), 'value', 'text', $this->value); } }