| Current Path : /var/www/iplanru/data/www/www.i-plan.ru/media/zoo/applications/product/templates/work/ | 
| Current File : /var/www/iplanru/data/www/www.i-plan.ru/media/zoo/applications/product/templates/work/item.php | 
<?php
/**
* @package   com_zoo
* @author    YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// include assets css/js
if (strtolower(substr($GLOBALS['app']->getTemplate(), 0, 3)) != 'yoo') {
	$this->app->document->addStylesheet('assets:css/reset.css');
}
$this->app->document->addStylesheet($this->template->resource.'assets/css/zoo.css');
$css_class = $this->application->getGroup().'-'.$this->template->name;
jimport('zoolib.zoolib');
$zoolib = new ZooLib();
/*$params=$zoolib->get_item_params($this->item->id);
$title=$params["metadata.title"];
unset ($params);*/
$title=$this->item->name.' | Intesco Research Group';
$doc = JFactory::getDocument();
$doc->setTitle($title);
?>
<div id="yoo-zoo" class="yoo-zoo <?php echo $css_class; ?> <?php echo $css_class.'-'.$this->item->alias; ?>">
	<div class="item">
		<?php echo $this->renderer->render('item.full', array('view' => $this, 'item' => $this->item)); ?>
				
		<?php if ($this->application->isCommentsEnabled() && ($this->item->isCommentsEnabled() || $this->item->getCommentsCount(1))) : ?>
		<div class="feedback">
			
			<div class="box-1">
				<?php echo $this->app->comment->renderComments($this, $this->item); ?>
			</div>
				
		</div>
		<?php endif; ?>
	</div>
</div>