function getBlockCode_Rate() { bx_events_import('Voting'); $o = new BxEventsVoting('bx_events', (int) $this->aDataEntry['ID']); if (!$o->isEnabled()) { return ''; } return array($o->getBigVoting($this->_oMain->isAllowedRate($this->aDataEntry))); }
function getBlockCode_UpcomingPhoto() { $aEvent = $this->oDb->getUpcomingEvent(getParam('bx_events_main_upcoming_event_from_featured_only') ? true : false); if (!$aEvent) { return MsgBox(_t('_Empty')); } $aAuthor = getProfileInfo($aEvent['ResponsibleID']); $a = array('ID' => $aEvent['ResponsibleID'], 'Avatar' => $aEvent['PrimPhoto']); $aImage = BxDolService::call('photos', 'get_image', array($a, 'file'), 'Search'); bx_events_import('Voting'); $oRating = new BxEventsVoting('bx_events', (int) $aEvent['ID']); $aVars = array('image_url' => !$aImage['no_image'] && $aImage['file'] ? $aImage['file'] : $this->oTemplate->getIconUrl('no-photo-110.png'), 'image_title' => !$aImage['no_image'] && $aImage['title'] ? $aImage['title'] : '', 'event_url' => BX_DOL_URL_ROOT . $this->oConfig->getBaseUri() . 'view/' . $aEvent['EntryUri'], 'event_title' => $aEvent['Title'], 'event_start' => getLocaleDate($aEvent['EventStart']), 'event_start_in' => defineTimeInterval($aEvent['EventStart']), 'author_title' => _t('_From'), 'author_username' => $aAuthor['NickName'], 'author_url' => getProfileLink($aAuthor['ID']), 'rating' => $oRating->isEnabled() ? $oRating->getJustVotingElement(true, $aEvent['ID']) : '', 'participants' => $aEvent['FansCount'], 'country_city' => '<a href="' . $this->oConfig->getBaseUri() . 'browse/country/' . strtolower($aEvent['Country']) . '">' . _t($GLOBALS['aPreValues']['Country'][$aEvent['Country']]['LKey']) . '</a>' . (trim($aEvent['City']) ? ', ' . $aEvent['City'] : ''), 'place' => $aEvent['Place'], 'flag_image' => genFlag($aEvent['Country'])); return $this->oTemplate->parseHtmlByName('main_event', $aVars); }
function getBlockCode_UpcomingPhoto() { $aEvent = $this->oDb->getUpcomingEvent(getParam('bx_events_main_upcoming_event_from_featured_only') ? true : false); if (!$aEvent) { return false; } $aAuthor = getProfileInfo($aEvent['ResponsibleID']); $a = array('ID' => $aEvent['ResponsibleID'], 'Avatar' => $aEvent['PrimPhoto']); $aImage = BxDolService::call('photos', 'get_image', array($a, 'file'), 'Search'); bx_events_import('Voting'); $oRating = new BxEventsVoting('bx_events', (int) $aEvent['ID']); $sEventUrl = BX_DOL_URL_ROOT . $this->oConfig->getBaseUri() . 'view/' . $aEvent['EntryUri']; $aVars = array('bx_if:image' => array('condition' => !$aImage['no_image'] && $aImage['file'], 'content' => array('image_url' => !$aImage['no_image'] && $aImage['file'] ? $aImage['file'] : '', 'image_title' => !$aImage['no_image'] && $aImage['title'] ? $aImage['title'] : '', 'event_url' => $sEventUrl)), 'event_url' => $sEventUrl, 'event_title' => $aEvent['Title'], 'event_start_in' => $this->oMain->_formatDateInBrowse($aEvent), 'author_title' => _t('_From'), 'author_username' => getNickName($aAuthor['ID']), 'author_url' => getProfileLink($aAuthor['ID']), 'rating' => $oRating->isEnabled() ? $oRating->getJustVotingElement(true, $aEvent['ID']) : '', 'participants' => $aEvent['FansCount'], 'country_city' => $this->oMain->_formatLocation($aEvent, true, true), 'place' => $aEvent['Place']); return $this->oTemplate->parseHtmlByName('main_event', $aVars); }
function BxEventsSearchResult($sMode = '', $sValue = '', $sValue2 = '', $sValue3 = '') { $oMain = $this->getMain(); switch ($sMode) { case 'pending': if (false !== bx_get('bx_events_filter')) { $this->aCurrent['restriction']['keyword'] = array('value' => process_db_input(bx_get('bx_events_filter'), BX_TAGS_STRIP), 'field' => '', 'operator' => 'against'); } $this->aCurrent['restriction']['activeStatus']['value'] = 'pending'; $this->sBrowseUrl = "administration"; $this->aCurrent['title'] = _t('_bx_events_pending_approval'); unset($this->aCurrent['rss']); break; case 'my_pending': $this->aCurrent['restriction']['owner']['value'] = $oMain->_iProfileId; $this->aCurrent['restriction']['activeStatus']['value'] = 'pending'; $this->sBrowseUrl = "browse/user/" . getNickName($oMain->_iProfileId); $this->aCurrent['title'] = _t('_bx_events_pending_approval'); unset($this->aCurrent['rss']); break; case 'search': if ($sValue) { $this->aCurrent['restriction']['keyword'] = array('value' => $sValue, 'field' => '', 'operator' => 'against'); } if ($sValue2) { if (is_array($sValue2)) { $this->aCurrent['restriction']['country'] = array('value' => $sValue2, 'field' => 'Country', 'operator' => 'in'); } else { $this->aCurrent['restriction']['country']['value'] = $sValue2; } } $sValue = $GLOBALS['MySQL']->unescape($sValue); $sValue2 = $GLOBALS['MySQL']->unescape($sValue2); $this->sBrowseUrl = "search/{$sValue}/" . (is_array($sValue2) ? implode(',', $sValue2) : $sValue2); $this->aCurrent['title'] = _t('_bx_events_caption_search_results') . ' ' . (is_array($sValue2) ? implode(', ', $sValue2) : $sValue2) . ' ' . $sValue; unset($this->aCurrent['rss']); break; case 'user': $iProfileId = $GLOBALS['oBxEventsModule']->_oDb->getProfileIdByNickName($sValue, false); $GLOBALS['oTopMenu']->setCurrentProfileID($iProfileId); // select profile subtab, instead of events if (!$iProfileId) { $this->isError = true; } else { $this->aCurrent['restriction']['owner']['value'] = $iProfileId; } $sValue = $GLOBALS['MySQL']->unescape($sValue); $this->sBrowseUrl = "browse/user/{$sValue}"; $this->aCurrent['title'] = _t('_bx_events_caption_browse_by_author') . ' ' . $sValue; if (bx_get('rss')) { $aData = getProfileInfo($iProfileId); if ($aData['PrimPhoto']) { $a = array('ID' => $aData['ResponsibleID'], 'Avatar' => $aData['PrimPhoto']); $aImage = BxDolService::call('photos', 'get_image', array($a, 'browse'), 'Search'); if (!$aImage['no_image']) { $this->aCurrent['rss']['image'] = $aImage['file']; } } } break; case 'joined': $iProfileId = $GLOBALS['oBxEventsModule']->_oDb->getProfileIdByNickName($sValue, false); $GLOBALS['oTopMenu']->setCurrentProfileID($iProfileId); // select profile subtab, instead of module tab if (!$iProfileId) { $this->isError = true; } else { $this->aCurrent['join']['fans'] = array('type' => 'inner', 'table' => 'bx_events_participants', 'mainField' => 'ID', 'onField' => 'id_entry', 'joinFields' => array('id_profile')); $this->aCurrent['restriction']['fans'] = array('value' => $iProfileId, 'field' => 'id_profile', 'operator' => '=', 'table' => 'bx_events_participants'); $this->aCurrent['restriction']['confirmed_fans'] = array('value' => 1, 'field' => 'confirmed', 'operator' => '=', 'table' => 'bx_events_participants'); } $sValue = $GLOBALS['MySQL']->unescape($sValue); $this->sBrowseUrl = "browse/joined/{$sValue}"; $this->aCurrent['title'] = _t('_bx_events_caption_browse_by_author_joined_events') . ' ' . $sValue; if (bx_get('rss')) { $aData = getProfileInfo($iProfileId); if ($aData['Avatar']) { $a = array('ID' => $aData['author_id'], 'Avatar' => $aData['thumb']); $aImage = BxDolService::call('photos', 'get_image', array($a, 'browse'), 'Search'); if (!$aImage['no_image']) { $this->aCurrent['rss']['image'] = $aImage['file']; } } } break; case 'admin': if (bx_get('bx_events_filter')) { $this->aCurrent['restriction']['keyword'] = array('value' => process_db_input(bx_get('bx_events_filter'), BX_TAGS_STRIP), 'field' => '', 'operator' => 'against'); } $this->aCurrent['restriction']['owner']['value'] = $oMain->_iProfileId; $this->sBrowseUrl = "browse/admin"; $this->aCurrent['title'] = _t('_bx_events_admin_events'); break; case 'category': $this->aCurrent['join']['category'] = array('type' => 'inner', 'table' => 'sys_categories', 'mainField' => 'ID', 'onField' => 'ID', 'joinFields' => ''); $this->aCurrent['restriction']['category_type']['value'] = $this->aCurrent['name']; $this->aCurrent['restriction']['category']['value'] = $sValue; $sValue = $GLOBALS['MySQL']->unescape($sValue); $this->sBrowseUrl = "browse/category/" . title2uri($sValue); $this->aCurrent['title'] = _t('_bx_events_caption_browse_by_category') . ' ' . $sValue; break; case 'tag': $this->aCurrent['restriction'][$sMode]['value'] = $sValue; $sValue = $GLOBALS['MySQL']->unescape($sValue); $this->sBrowseUrl = "browse/{$sMode}/" . title2uri($sValue); $this->aCurrent['title'] = _t('_bx_events_caption_browse_by_' . $sMode) . ' ' . $sValue; break; case 'country': $this->aCurrent['restriction'][$sMode]['value'] = $sValue; $this->sBrowseUrl = "browse/{$sMode}/{$sValue}"; $this->aCurrent['title'] = _t('_bx_events_caption_browse_by_' . $sMode) . ' ' . $sValue; break; case 'upcoming': $this->aCurrent['restriction']['upcoming'] = array('value' => time(), 'field' => 'EventEnd', 'operator' => '>'); $this->aCurrent['sorting'] = 'upcoming'; $this->sBrowseUrl = 'browse/upcoming'; $this->aCurrent['title'] = _t('_bx_events_caption_browse_upcoming'); break; case 'past': $this->aCurrent['restriction']['past'] = array('value' => time(), 'field' => 'EventEnd', 'operator' => '<'); $this->aCurrent['sorting'] = 'past'; $this->sBrowseUrl = 'browse/past'; $this->aCurrent['title'] = _t('_bx_events_caption_browse_past'); break; case 'recent': $this->sBrowseUrl = 'browse/recent'; $this->aCurrent['title'] = _t('_bx_events_caption_browse_recently_added'); break; case 'top': $this->sBrowseUrl = 'browse/top'; $this->aCurrent['sorting'] = 'top'; $this->aCurrent['title'] = _t('_bx_events_caption_browse_top_rated'); break; case 'popular': $this->sBrowseUrl = 'browse/popular'; $this->aCurrent['sorting'] = 'popular'; $this->aCurrent['title'] = _t('_bx_events_caption_browse_popular'); break; case 'featured': $this->aCurrent['restriction']['featured'] = array('value' => 1, 'field' => 'Featured', 'operator' => '='); $this->sBrowseUrl = 'browse/featured'; $this->aCurrent['title'] = _t('_bx_events_caption_browse_featured'); break; case 'calendar': $this->aCurrent['restriction']['calendar-min'] = array('value' => "UNIX_TIMESTAMP('{$sValue}-{$sValue2}-{$sValue3} 00:00:00')", 'field' => 'EventEnd', 'operator' => '>=', 'no_quote_value' => true); $this->aCurrent['restriction']['calendar-max'] = array('value' => "UNIX_TIMESTAMP('{$sValue}-{$sValue2}-{$sValue3} 23:59:59')", 'field' => 'EventStart', 'operator' => '<=', 'no_quote_value' => true); $this->sBrowseUrl = "browse/calendar/{$sValue}/{$sValue2}/{$sValue3}"; $this->aCurrent['title'] = _t('_bx_events_caption_browse_by_day') . getLocaleDate(strtotime("{$sValue}-{$sValue2}-{$sValue3}"), BX_DOL_LOCALE_DATE_SHORT); break; case '': $this->sBrowseUrl = 'browse/'; $this->aCurrent['title'] = _t('_bx_events'); unset($this->aCurrent['rss']); break; default: $this->isError = true; } $this->aCurrent['paginate']['perPage'] = $oMain->_oDb->getParam('bx_events_perpage_browse'); if (isset($this->aCurrent['rss'])) { $this->aCurrent['rss']['link'] = BX_DOL_URL_ROOT . $oMain->_oConfig->getBaseUri() . $this->sBrowseUrl; } if (bx_get('rss')) { $this->aCurrent['ownFields'][] = 'Description'; $this->aCurrent['ownFields'][] = 'Date'; $this->aCurrent['paginate']['perPage'] = $oMain->_oDb->getParam('bx_events_max_rss_num'); } bx_events_import('Voting', $this->getModuleArray()); $oVotingView = new BxEventsVoting('bx_events', 0); $this->oVotingView = $oVotingView->isEnabled() ? $oVotingView : null; parent::BxDolTwigSearchResult(); }