403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /inetpub/wwwroot/icd/administrator/components/com_jlogonalert/views/addemails/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /inetpub/wwwroot/icd/administrator/components/com_jlogonalert/views/addemails/view.html.php
<?php

/*
 * @package Joomla 1.5
 * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 *
 * @component jLogonAlert, version 1.3, 2010-05-11
 * @copyright Copyright (C) Carlo Di Giuseppe - www.applejuice.it
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
 */
 
defined ('_JEXEC') or die ('Restricted access');

jimport ('joomla.application.component.view');

class LogonalertViewAddemails extends JView
{
	function display($tpl = null)
	{
		$row =& JTable::getInstance('Alertemail','Table');
		$cid = JRequest::getVar('cid',array(0),'','array');
		$id = $cid[0];
		$row->load($id);
		$this->assignRef('row',$row);
		$editor =& JFactory::getEditor();
		$this->assignRef('editor',$editor);
		
		if ($id == 0)
		{
			$db =& JFactory::getDBO();
			$db->setQuery('SELECT id, name from #__users where id not in (select id_utente from #__ajlaemails)');
			$utente = $db->loadObjectList();
		}
		else
		{
			$db =& JFactory::getDBO();
			$db->setQuery('SELECT id, name from #__users where id = '.$row->id_utente);
			$utente = $db->loadObjectList();
		}
		
		$this->assignRef('utentiDisponibili', JHTML::_('select.genericlist', $utente,'utente','','id','name'));
		$this->assignRef('avviso_backend', JHTML::_('select.booleanlist','avviso_backend','class="inputbox"',$row->avviso_backend));
		$this->assignRef('avviso_frontend', JHTML::_('select.booleanlist','avviso_frontend','class="inputbox"',$row->avviso_frontend));
		$this->assignRef('alert_success', JHTML::_('select.booleanlist','alert_success','class="inputbox"',$row->alert_success));
		$this->assignRef('alert_successb', JHTML::_('select.booleanlist','alert_successb','class="inputbox"',$row->alert_successb));
		$this->assignRef('testo_personalizzato', JHTML::_('select.booleanlist','testo_personalizzato','class="inputbox"',$row->testo_personalizzato));
		$this->assignRef('published',JHTML::_('select.booleanlist','published','class="inputbox"',$row->published));
 		parent::display($tpl); 
	} 
}

Youez - 2016 - github.com/yon3zu
LinuXploit