Файл: upload/module/quiz/include/service/browse.class.php
Строк: 72
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Service
* @version $Id: browse.class.php 4545 2012-07-20 10:40:35Z Raymond_Benc $
*/
class Quiz_Service_Browse extends Phpfox_Service
{
/**
* Class constructor
*/
public function __construct()
{
}
public function query()
{
if (Phpfox::isUser() && Phpfox::isModule('like'))
{
$this->database()->select('lik.like_id AS is_liked, ')->leftJoin(Phpfox::getT('like'), 'lik', 'lik.type_id = 'quiz' AND lik.item_id = q.quiz_id AND lik.user_id = ' . Phpfox::getUserId());
}
}
public function getQueryJoins($bIsCount = false, $bNoQueryFriend = false)
{
if (Phpfox::isModule('friend') && Phpfox::getService('friend')->queryJoin($bNoQueryFriend))
{
$this->database()->join(Phpfox::getT('friend'), 'friends', 'friends.user_id = q.user_id AND friends.friend_user_id = ' . Phpfox::getUserId());
}
}
public function processRows(&$aQuizzes)
{
foreach ($aQuizzes as $iKey => $aQuiz)
{
$aQuizzes[$iKey]['aFeed'] = array(
'feed_display' => 'mini',
'comment_type_id' => 'quiz',
'privacy' => $aQuiz['privacy'],
'comment_privacy' => $aQuiz['privacy_comment'],
'like_type_id' => 'quiz',
'feed_is_liked' => (isset($aQuiz['is_liked']) ? $aQuiz['is_liked'] : false),
'feed_is_friend' => (isset($aQuiz['is_friend']) ? $aQuiz['is_friend'] : false),
'item_id' => $aQuiz['quiz_id'],
'user_id' => $aQuiz['user_id'],
'total_comment' => $aQuiz['total_comment'],
'feed_total_like' => $aQuiz['total_like'],
'total_like' => $aQuiz['total_like'],
'feed_link' => Phpfox::permalink('quiz', $aQuiz['quiz_id'], $aQuiz['title']),
'feed_title' => $aQuiz['title'],
'type_id' => 'quiz'
);
}
}
/**
* If a call is made to an unknown method attempt to connect
* it to a specific plug-in with the same name thus allowing
* plug-in developers the ability to extend classes.
*
* @param string $sMethod is the name of the method
* @param array $aArguments is the array of arguments of being passed
*/
public function __call($sMethod, $aArguments)
{
/**
* Check if such a plug-in exists and if it does call it.
*/
if ($sPlugin = Phpfox_Plugin::get('quiz.service_browse__call'))
{
eval($sPlugin);
return;
}
/**
* No method or plug-in found we must throw a error.
*/
Phpfox_Error::trigger('Call to undefined method ' . __CLASS__ . '::' . $sMethod . '()', E_USER_ERROR);
}
}
?>