File size: 594B
<?php
/**
* @package XenCentral Feedback System
* @author DNF Technology
* @copyright Drnoyan & Nalyan LDA, Portugal, EU
* @license http://dnf.technology/terms/
* @link http://customers.dnf.technology
* @version 2.0.0 Beta 10
* @revision 12
*/
class XenCentral_Feedback_ViewPublic_Comet extends XenForo_ViewPublic_Base
{
public function renderJson()
{
$output=$this->_renderer->getDefaultOutputArray('XenCentral_Feedback_ViewPublic_LatestActivity', $this->getParams(), $this->getTemplateName());
$output['lastUpdateDate']=time();
return $output;
}
}