<?php
/**
* @version 1.0.0
* @category Anahita Social Engineâ¢
* @copyright Copyright (C) 2008 - 2010 rmdStudio Inc. and Peerglobe Technology Inc. All rights reserved.
* @license GNU GPLv2 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
* @link http://www.anahitapolis.com
*/
class AnUikitEmailNotification extends AnUikitViewHtml
{
/**
*
* @return
* @param $options Object[optional]
*/
public function __construct($options=array())
{
parent::__construct($options);
$this->setLayout('notification');
$url = JFactory::getURI()->base().'index.php?option=com_socialengine&view=applications';
$this->assign('url', $url);
}
/**
*
* @return
* @param $notification Object
*/
public function setNotification($notification)
{
$this->assign('notification', $notification);
return $this;
}
}