Your IP : 216.73.216.170


Current Path : /var/www/iplanru/data/old/www/i-plan.ru/administrator/components/com_sef/views/urls/
Upload File :
Current File : /var/www/iplanru/data/old/www/i-plan.ru/administrator/components/com_sef/views/urls/view.html.php

<?php
/**
 * SEF component for Joomla! 1.5
 *
 * @author      ARTIO s.r.o.
 * @copyright   ARTIO s.r.o., http://www.artio.cz
 * @package     JoomSEF
 * @version     3.1.0
 */

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();

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

class SEFViewURLs extends JView
{
	function display($tpl = null)
	{
		JToolBarHelper::title( JText::_('JoomSEF'), 'url-delete.png' );
		
		JToolBarHelper::back('Back', 'index.php?option=com_sef');
		
		// Get data from the model
		$count		= & $this->get( 'Count' );
		if( $count == 0 ) {
		    $msg = JText::_('No records found.');
		}
		elseif( $count == 1 ) {
		    $msg = JText::_('WARNING!!!<br/>You are about to delete') . ' ' . $count . ' ' . JText::_('record');
		}
		else {
		    $msg = JText::_('WARNING!!!<br/>You are about to delete') . ' ' . $count . ' ' . JText::_('records');
		}
		$this->assignRef( 'count', $count );
		$this->assignRef( 'msg', $msg );

		parent::display($tpl);
	}
}