File size: 2.32Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: invitations.class.php 3215 2011-10-05 14:40:56Z Raymond_Benc $
*/
class Invite_Component_Controller_Invitations extends Phpfox_Component
{
/**
* Controller
*/
public function process()
{
Phpfox::isUser(true);
if ($iInvite = $this->request()->getInt('del'))
{
$bDel = Invite_Service_Process::instance()->delete($iInvite, Phpfox::getUserId());
if ($bDel)
{
$this->url()->send('invite.invitations', null, _p('invitation_deleted'));
}
$this->url()->send('invite.invitations', null, _p('invitation_not_found'));
}
elseif ($aInvite = $this->request()->get('val'))
{
$bDel = true;
if (is_array($aInvite) && count($aInvite)){
foreach ($aInvite as $iInvite)
{
$bDel = $bDel && Invite_Service_Process::instance()->delete($iInvite, Phpfox::getUserId());
}
}
if ($bDel)
{
$this->url()->send('invite.invitations', null, _p('invitation_deleted'));
}
$this->url()->send('invite.invitations', null, _p('invitation_not_found'));
}
$iPage = $this->request()->getInt('page');
$iPageSize = (int) Phpfox::getParam('invite.pendings_to_show_per_page');
list($iCnt, $aInvites) = Invite_Service_Invite::instance()->get(Phpfox::getUserId(), $iPage, $iPageSize);
Phpfox_Pager::instance()->set(array('page' => $iPage, 'size' => $iPageSize, 'count' => $iCnt));
$this->setParam('global_moderation', array(
'name' => 'invitations',
'ajax' => 'invite.moderation',
'menu' => array(
array(
'phrase' => _p('Delete'),
'action' => 'delete'
)
)
)
);
$this->template()->setTitle(_p('pending_invitations'))
->setBreadCrumb(_p('pending_invitations'))
->assign(array(
'aInvites' => $aInvites,
'iPage' => $iPage
)
)
->setHeader('cache', array(
'pending.js' => 'module_invite'
)
);
}
/**
* 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('invite.component_controller_invitations_clean')) ? eval($sPlugin) : false);
}
}