1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 09:48:19 +03:00
ifhub.club/templates/skin/developer/actions/ActionTalk/friends.tpl
2010-02-08 02:10:30 +00:00

82 lines
2.4 KiB
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="block blogs">
<h3>{$aLang.block_friends}</h3>
{if $aUsersFriend}
<div class="block-content">
{literal}
<script language="JavaScript" type="text/javascript">
function friendToogle(element) {
login=element.getNext('a').get('text');
to=$('talk_users')
.getProperty('value')
.split(',')
.map(function(item,index){
return item.trim();
}).filter(function(item,index){
return item.length>0;
});
$('talk_users').setProperty(
'value',
(element.getProperty('checked'))
? to.include(login).join(',')
: to.erase(login).join(',')
);
}
window.addEvent('domready', function() {
// сканируем список друзей
var lsCheckList=$('friends')
.getElements('input[type=checkbox]')
.addEvents({
'click': function(){
return friendToogle(this);
}
});
// toogle checkbox`а при клике на ссылку-логин
$('friends').getElements('a').addEvents({
'click': function() {
checkbox=this.getPrevious('input[type=checkbox]');
checkbox.setProperty('checked',!checkbox.getProperty('checked'));
friendToogle(checkbox);
return false;
}
});
// выделить всех друзей
$('friend_check_all').addEvents({
'click': function(){
lsCheckList.each(function(item,index){
if(!item.getProperty('checked')) {
item.setProperty('checked',true);
friendToogle(item);
}
});
return false;
}
});
// снять выделение со всех друзей
$('friend_uncheck_all').addEvents({
'click': function(){
lsCheckList.each(function(item,index){
if(item.getProperty('checked')) {
item.setProperty('checked',false);
friendToogle(item);
}
});
return false;
}
});
});
</script>
{/literal}
<ul class="list" id="friends">
{foreach from=$aUsersFriend item=oFriend}
<li><input type="checkbox" name="friend[{$oFriend->getId()}]"/> {$oFriend->getLogin()}</li>
{/foreach}
</ul>
</div>
<div class="right"><a href="#" id="friend_check_all">{$aLang.block_friends_check}</a> | <a href="#" id="friend_uncheck_all">{$aLang.block_friends_uncheck}</a></div>
{else}
{$aLang.block_friends_empty}
{/if}
</div>