| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | <?phpdefined('IN_ADMIN') or exit('No permission resources.');$show_dialog = 1;include $this->admin_tpl('header','admin');?><div class="pad-lr-10"><form name="myform" id="myform" action="?m=admin&c=keylink&a=delete" method="post" onsubmit="checkuid();return false;"><div class="table-list"> <table width="100%" cellspacing="0">        <thead>            <tr>            <th width="35" align="center"><input type="checkbox" value="" id="check_box" onclick="selectall('keylinkid[]');"></th>             <th width="30%"><?php echo L('keyword_name')?></th>            <th ><?php echo L('link_url')?></th>              <th width="120"><?php echo L('operations_manage')?></th>            </tr>        </thead>    <tbody><?phpif(is_array($infos)){	foreach($infos as $info){?>    <tr>    <td align="center">	<input type="checkbox" name="keylinkid[]" value="<?php echo $info['keylinkid']?>">	</td>         <td width="30%" align="left"><span  class="<?php echo $info['style']?>"><?php echo $info['word']?></span> </td>        <td align="center"><?php echo $info['url']?></td>         <td align="center"><a href="javascript:edit(<?php echo $info['keylinkid']?>, '<?php echo new_addslashes($info['word'])?>')"><?php echo L('edit')?></a> | <a href="javascript:confirmurl('?m=admin&c=keylink&a=delete&keylinkid=<?php echo $info['keylinkid']?>', '<?php echo L('keylink_confirm_del')?>')"><?php echo L('delete')?></a> </td>    </tr><?php	}}?></tbody> </table> <div class="btn"> <a href="#" onClick="javascript:$('input[type=checkbox]').attr('checked', true)"><?php echo L('selected_all')?></a>/<a href="#" onClick="javascript:$('input[type=checkbox]').attr('checked', false)"><?php echo L('cancel')?></a><input type="submit" name="submit" class="button" value="<?php echo L('remove_all_selected')?>"  onClick="return confirm('<?php echo L('badword_confom_del')?>')" /> </div> <div id="pages"><?php echo $pages?></div></div></form></div></body></html><script type="text/javascript">function edit(id, name) {	window.top.art.dialog({id:'edit'}).close();	window.top.art.dialog({title:'<?php echo L('keylink_edit')?> '+name+' ',id:'edit',iframe:'?m=admin&c=keylink&a=edit&keylinkid='+id,width:'450',height:'130'}, function(){var d = window.top.art.dialog({id:'edit'}).data.iframe;var form = d.document.getElementById('dosubmit');form.click();return false;}, function(){window.top.art.dialog({id:'edit'}).close()});}function checkuid() {	var ids='';	$("input[name='keylinkid[]']:checked").each(function(i, n){		ids += $(n).val() + ',';	});	if(ids=='') {		window.top.art.dialog({content:'<?php echo L('badword_pleasechose')?>',lock:true,width:'200',height:'50',time:1.5},function(){});		return false;	} else {		myform.submit();	}}</script> 
 |