| Current Path : /var/www/iplanru/data/www/iplan.5018.vps.agava.net/components/com_poll/views/poll/ | 
| Current File : /var/www/iplanru/data/www/iplan.5018.vps.agava.net/components/com_poll/views/poll/view.html.php | 
<?php
// No direct access
defined( '_JEXEC' ) or die;
/**
 * View for  current element
 * @author kirdinyuri
 */
class PollViewPoll extends JViewLegacy
{
	protected $items;
	protected $pagination;
	/**
	 * Method of display current template
	 * @param type $tpl
	 */
	public function display( $tpl = null )
	{
		$this->items = $this->get( 'Items' );
		$this->pagination = $this->get( 'Pagination' );
		$this->loadHelper( 'poll' );
		
		pollHelper::setDocument( 'view title', $this->baseurl );
		parent::display( $tpl );
	}
}