| 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/components/com_joomlawatch/view/ |
Upload File : |
<?php
/**
* JoomlaWatch - A real-time ajax joomla monitor and live stats
* @version 1.2.0
* @package JoomlaWatch
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU General Public License v3
* @copyright (C) 2007 by Matej Koval - All rights reserved!
* @website http://www.codegravity.com
**/
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<table width='100%' cellpadding='4'>
<tr><td align='left'>
<a href='<?php echo $this->joomlaWatch->config->getAdministratorPath();?>index2.php?option=com_joomlawatch&task=goals&action=insert'><img src='<?php echo($this->joomlaWatch->config->getLiveSite());?>components/com_joomlawatch/icons/new.gif' border='0' title='<?php echo _JW_GOALS_NEW;?>' valign='center'/> <?php echo _JW_GOALS_NEW;?></a>
</td>
<td align='right'>
<a href='<?php echo $this->joomlaWatch->config->getAdministratorPath();?>index2.php?option=com_joomlawatch&task=goals'><img src='<?php echo($this->joomlaWatch->config->getLiveSite());?>components/com_joomlawatch/icons/reload.gif' border='0' title='<?php echo _JW_GOALS_RELOAD;?>'/></a>
</td>
</tr>
</table>
<div style='width: 80%; text-align: justify; border: 1px solid black;'>
<?php echo (_JW_DESC_GOALS); ?>
</div><br/>
<table width='100%' cellpadding='4'>
<tr>
<th align='center'><?php echo(_JW_GOALS_ID);?></th>
<th align='center'><?php echo(_JW_GOALS_NAME);?></th>
<th align='center'><?php echo(_JW_GOALS_URI_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_TITLE_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_USERNAME_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_CAME_FROM_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_COUNTRY_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_IP_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_GET_VAR);?></th>
<th align='center'><?php echo(_JW_GOALS_GET_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_POST_VAR);?></th>
<th align='center'><?php echo(_JW_GOALS_POST_CONDITION);?></th>
<th align='center'><?php echo(_JW_GOALS_HITS);?></th>
<th align='center'><?php echo(_JW_GOALS_ENABLED);?></th>
</tr>
<?php
$rows = $this->joomlaWatch->goal->getGoals(); //TODO change to style
$i = 0;
foreach ($rows as $row) {
$i++;
if ($i % 2)
$color = "#f5f5f5";
else
$color = "#f0f0f0";
$style = "background-color: $color;";
?>
<tr>
<?php echo $this->renderCell($style, @$row->id);?>
<?php echo $this->renderCell($style, @$row->name, 1);?>
<?php echo $this->renderCell($style, @$row->uri_condition);?>
<?php echo $this->renderCell($style, @$row->title_condition);?>
<?php echo $this->renderCell($style, @$row->username_condition);?>
<?php echo $this->renderCell($style, @$row->came_from_condition);?>
<?php echo $this->renderCell($style, @$row->country_condition);?>
<?php echo $this->renderCell($style, @$row->ip_condition);?>
<?php echo $this->renderCell($style, @$row->get_var);?>
<?php echo $this->renderCell($style, @$row->get_condition);?>
<?php echo $this->renderCell($style, @$row->post_var); ?>
<?php echo $this->renderCell($style, @$row->post_condition);?>
<td align='center' style='<?php echo $style;?>'><?php echo $this->joomlaWatch->goal->getGoalCount($row->id);?></td>
<td align='center' style='<?php echo $style;?>'><?php echo $this->renderEnabled($row->id, $row->disabled);?></td>
<td align='center' style='<?php echo $style;?>'><?php echo @$this->renderActionButtons($row->id);?></td>
</tr>
<?php
}
?>
</table>
<br/><br/><br/><br/>