All pastes #2076292 Raw Edit

Mine

public text v1 · immutable
#2076292 ·published 2011-06-07 17:15 UTC
rendered paste body
<?php

// No direct access to this file
defined('_JEXEC') or die('Restricted access');

// import Joomla view library
jimport('joomla.application.component.view');

class CtItemViewCtItem extends JView
{
	
	// Overwriting JView display method
	function display($tpl = null) 
	{
		
		// Assign data to the view
		$this->items = $this->get('Items');
		
		if(count($errors = $this->get('Errors'))) 
		{
			JError::raiseError(500, implode('<br />', $errors));
			
			return false;
		}
		
		// Display the view
		parent::display($tpl);
		
	}

}