Мод вывода случайного подарка на аватар. Новая версия от Galstuk`a
Данный мод случайным образом выводит подарок пользователя на его аватар в левом верхнем углу из имеющихся.
Прошу не путать с модом, который был опубликован ранее!!!
Этот мод выведет подарок сразу же после установки.
Инструкция проста:
1.Открыть profile.php
Найти:
После этого сразу поставить:
2.Открыть profile.tpl
Найти:
Заменить на:
Ссылка на тему в форуме: Link
Прошу не путать с модом, который был опубликован ранее!!!
Этот мод выведет подарок сразу же после установки.
Инструкция проста:
1.Открыть profile.php
Найти:
// ASSIGN VARIABLES AND INCLUDE FOOTER
После этого сразу поставить:
//GIFT ON AVATAR BY GALSTUK
$type_query = $database->database_query(" SELECT id AS gift_id, gift AS file, filetype, lang FROM mf_gifts WHERE to_id=$ownergift ORDER BY RAND() LIMIT 1 ");
$typee = array();
while($gift_type = $database->database_fetch_assoc($type_query))
{
$typee[] = $gift_type; SE_Language::_preload_multi($gift_type['lang']);
}
$smarty->assign('giftss', $typee);
//END GIFT ON AVATAR BY GALSTUK
2.Открыть profile.tpl
Найти:
{* SHOW USER PHOTO *}
<table cellpadding='0' cellspacing='0' width='100%' style='margin-bottom: 10px;'>
<tr>
<td class='profile_photo'><img class='photo' src='{$owner->user_photo("./images/nophoto.gif")}' border='0'></td>
</tr>
</table>
Заменить на:
{* SHOW USER PHOTO *}
<table cellpadding='0' cellspacing='0' width='100%' style='margin-bottom: 10px;'>
<tr>
<td class='profile_photo'><img class='photo' src='{$owner->user_photo("./images/nophoto.gif")}' border='0'>
<div style="left: 0px; top: 0px; position: absolute;">{foreach key=cid item=con from=$giftss}<img src="mf_gifts/{$con.file}_thumb.{$con.filetype}" border="0">{/foreach}</div>
</td>
</tr>
</table>
Ссылка на тему в форуме: Link