Файл: upload/module/mail/include/component/controller/thread.class.php
Строк: 65
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Mail
* @version $Id: view.class.php 3527 2011-11-16 13:49:01Z Raymond_Benc $
*/
class Mail_Component_Controller_Thread extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
Phpfox::isUser(true);
if (!Phpfox::getParam('mail.threaded_mail_conversation'))
{
$this->url()->send('mail');
}
$iThreadId = $this->request()->getInt('id');
list($aThread, $aMessages) = Phpfox::getService('mail')->getThreadedMail($iThreadId);
if ($aThread === false)
{
return Phpfox_Error::display(Phpfox::getPhrase('mail.unable_to_find_a_conversation_history_with_this_user'));
}
$aValidation = array(
'message' => Phpfox::getPhrase('mail.add_reply')
);
$oValid = Phpfox::getLib('validator')->set(array(
'sFormName' => 'js_form',
'aParams' => $aValidation
)
);
if ($aThread['user_is_archive'])
{
$this->request()->set('view', 'trash');
}
Phpfox::getService('mail')->buildMenu();
Phpfox::getService('mail.process')->threadIsRead($aThread['thread_id']);
$iUserCnt = 0;
$sUsers = '';
foreach ($aThread['users'] as $aUser)
{
if ($aUser['user_id'] == Phpfox::getUserId())
{
continue;
}
$iUserCnt++;
if ($iUserCnt == (count($aThread['users']) - 1) && (count($aThread['users']) - 1) > 1)
{
$sUsers .= ' & ';
}
else
{
if ($iUserCnt != '1')
{
$sUsers .= ', ';
}
}
$sUsers .= $aUser['full_name'];
}
$this->template()->setTitle($sUsers)
->setTitle(Phpfox::getPhrase('mail.mail'))
->setBreadcrumb(Phpfox::getPhrase('mail.mail'), $this->url()->makeUrl('mail'))
->setBreadcrumb($sUsers, $this->url()->makeUrl('mail.thread', array('id' => $iThreadId)), true)
->setHeader('cache', array(
'mail.js' => 'module_mail',
'mail.css' => 'style_css',
'jquery/plugin/jquery.scrollTo.js' => 'static_script'
)
)
->assign(array(
'sCreateJs' => $oValid->createJS(),
'sGetJsForm' => $oValid->getJsForm(false),
'aMessages' => $aMessages,
'aThread' => $aThread,
'sCurrentPageCnt' => ($this->request()->getInt('page', 0) + 1)
)
);
$this->setParam('attachment_share', array(
'type' => 'mail',
'id' => 'js_form_mail'
)
);
$this->setParam('global_moderation', array(
'name' => 'mail',
'ajax' => 'mail.mailThreadAction',
'custom_fields' => '<div><input type="hidden" name="forward_thread_id" value="' . $aThread['thread_id'] . '" id="js_forward_thread_id" /></div>',
'menu' => array(
array(
'phrase' => Phpfox::getPhrase('mail.forward'),
'action' => 'forward'
)
)
)
);
}
/**
* Garbage collector. Is executed after this class has completed
* its job and the template has also been displayed.
*/
public function clean()
{
(($sPlugin = Phpfox_Plugin::get('mail.component_controller_thread_clean')) ? eval($sPlugin) : false);
}
}
?>