1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/classes/blocks/BlockTagsCountry.class.php

30 lines
778 B
PHP

<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Обрабатывает блок облака тегов стран юзеров
*
*/
class BlockTagsCountry extends Block {
public function Exec() {
$aCountries=$this->Geo_GetGroupCountriesByTargetType('user',20);
$this->Tools_MakeCloud($aCountries);
$this->Viewer_Assign("aCountryList",$aCountries);
}
}
?>