File size: 1.48Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Friend
* @version $Id: pending.class.php 5916 2013-05-13 08:42:54Z Raymond_Benc $
*/
class Friend_Component_Controller_Pending extends Phpfox_Component
{
/**
* Controller
*/
public function process()
{
Phpfox::isUser(true);
if ($iDeleteId = $this->request()->get('id'))
{
if (Friend_Service_Request_Process::instance()->delete($iDeleteId, Phpfox::getUserId()))
{
$this->url()->send('friend.pending', null, _p('friends_request_successfully_deleted'));
}
}
$iPage = $this->request()->getInt('page');
$iPageSize = 12;
list($iCnt, $aPendingRequests) = Friend_Service_Request_Request::instance()->getPending($iPage, $iPageSize);
Phpfox_Pager::instance()->set(array('page' => $iPage, 'size' => $iPageSize, 'count' => $iCnt));
Friend_Service_Friend::instance()->buildMenu();
$this->template()->setTitle('Friends')->setBreadCrumb(_p('my_friends'), $this->url()->makeUrl('friend'));
$this->template()->setTitle(_p('pending_friend_requests'))
->assign(array(
'aPendingRequests' => $aPendingRequests
)
);
}
/**
* 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('friend.component_controller_pending_clean')) ? eval($sPlugin) : false);
}
}