';
html += '
';
html += '
';
html += '
'+this.opt.title+' ';
html += '
';
html += '
';
html += '
';
html += this.content;
html += '
';
if(this.opt.win_resize){
html += '
';
}
html += '
';
$(html).appendTo("body");
},
_taskbar:function(id)
{
if(!id || id == 'undefined'){
id = this.id;
}
var arg = this._arg(id);
if(arg.taskbar == 'false'){
return true;
}
var ul_id = this.prefix+'taskbar';
var html = '
'+this.opt.title+' ';
$(html).appendTo("#"+ul_id);
return true;
},
_vlayer: function(id,ext)
{
if(!id){
return false;
}
var width = $("#"+id).width();
var height = $("#"+id).height();
var left = parseInt($("#"+id).css('left'),10);
var top = parseInt($("#"+id).css('top'),10);
var css = "width:"+width+"px;height:"+height+"px;left:"+left+"px;top:"+top+'px;position:absolute;';
var zindex = $("#"+id).css("z-index");
var addlayer = 1;
var html = '';
if(ext && ext != 'undefined'){
addlayer = 2;
var css2 = css + "z-index:"+parseInt(zindex+1)+";background:#fff;";
html += '
';
}
css += "z-index:"+parseInt(zindex+addlayer)+";";
html += '
';
$(html).appendTo('body');
},
//¹Ø±ÕÒƶ¯Ê±µÄ´¥·¢
_vlayer_close: function(id,ext)
{
var arg = this._arg(id);
var top = parseInt($("#vlayer-"+id).css("top"),10);
var left = parseInt($("#vlayer-"+id).css('left'),10);
$("#"+id).css({'top':top+"px",'left':left+"px"});//¿Ø¼þÐÂλÖÃ
if(arg.lock != 1){
$("#"+id+"-lock").css({'top':top+"px",'left':left+"px"});//¿Ø¼þÐÂλÖÃ
}
if(ext && ext != 'undefined'){
var width = parseInt($("#vlayer-"+id).width(),10);
var height = parseInt($("#vlayer-"+id).height(),10);
arg.width = width;
arg.height = height;
$("#"+id).css({
'width':width+"px",
'height':height+"px"
});//¿Ø¼þÐÂλÖÃ
$("#"+id+"-body").css({
"width":parseInt((width-12),10)+"px",
'height':parseInt((height-38),10)+"px"
});
if(arg.lock != 1){
$("#"+id+"-lock").css({'width':width+"px",'height':height+"px"});//¿Ø¼þÐÂλÖÃ
}
$("#vlayer-white-"+id).remove();
}
arg.left = left;
arg.top = top;
this._save(arg,id);
$("#vlayer-"+id).remove();
return true;
},
//°ó¶¨ÏàÓ¦µÄÐж¯
_action:function()
{
var _x,_y;//Êó±êÀë¿Ø¼þ×óÉϽǵÄÏà¶ÔλÖÃ
var _move = false;
var _resize = false;
var self = this;
var id = this.id;
var arg = this._arg(id);
var resize_width,resize_height;
//´æÔڹرմ°¿ÚÖ´ÐеĴ¥·¢
if(this.opt.win_close){
$("#close-"+id).click(function(){
if(self.opt.func_close){
var obj = (self.opt.func_close)();
if(!obj){
return false;
}else{
self.close(id);
}
}else{
self.close(id);
}
});
}
//ÓÐ×î´ó»¯×îС»¯°´Å¥Ê±
if(this.opt.win_900){
$("#w900-"+id).click(function(){self.w900(id);});
}
//ÓÐ×î´ó»¯×îС»¯°´Å¥Ê±
if(this.opt.win_max){
$("#max-"+id).click(function(){self.max(id);});
}
//ÓÐ×îС»¯Ê±µÄ°´Å¥ÐÅÏ¢
if(this.opt.win_min){
$("#min-"+id).click(function(){self.min(id);});
}
if(this.opt.win_refresh){
$("#refresh-"+id).click(function(){
document.getElementById(id+"-content").contentWindow.location.reload(true);
})
}
if(this.opt.win_resize){
$("#resize-"+id).mousedown(function(e){
e = e || window.event;
var zindex = self.zindex(id);
_x = e.clientX;
_y = e.clientY;
_move = false;
_resize = true;
self._vlayer(id,true);
e.preventDefault && e.preventDefault();
}).mouseup(function(e){
e = e || window.event;
_resize = false;
self._vlayer_close(id,true);
e.preventDefault && e.preventDefault();
});
}
//Èç¹ûÓÐÆôÓÃtaskbar
if(this.opt.taskbar){
$("#taskbar-"+id).click(function(){
//ÅжÏÊÇ·ñ×îС»¯ÁË
var is_hidden = $("#"+id).is(":hidden");
if(is_hidden){
$("#"+id).show();
$("#"+id+"-lock").show();
self.zindex(id);
}else{
var z_id = $("#"+id).css("z-index");
var z_max = self.max_zindex();
if(z_max != z_id){
self.zindex(id);
}else{
self.min(id);
}
}
self._taskbar_on();
});
}
//Èç¹ûĬÈÏÆôÓÃÁËis_max
if(this.opt.is_max){
this.max(id);
}
//Òƶ¯
$("#title-"+id).mousedown(function(e){
e = e || window.event;
var zindex = self.zindex(id);
//´´½¨Ò»¸öÐéÄâµÄDIV²ã
_x = e.pageX-parseInt($("#"+id).css("left"));
_y = e.pageY-parseInt($("#"+id).css("top"));
if(arg.move == 1){
_move = true;
_resize = false;
self._vlayer(id);
}
e.preventDefault && e.preventDefault();
}).mouseup(function(e){
e = e || window.event;
_move = false;
_resize = false;
self._vlayer_close(id);
e.preventDefault && e.preventDefault();
});
$(document).mousemove(function(e){
e = e || window.event;
if(!_move && _resize){
resize_width = e.clientX - _x + parseInt($("#"+id).width(),10);
resize_height = e.clientY- _y + parseInt($("#"+id).height(),10);
if(resize_width > arg.win_width){
resize_width = arg.win_width;
}
if(resize_height > arg.win_height){
resize_height = arg.win_height;
}
$("#vlayer-"+id).css({'width':resize_width+"px",'height':resize_height+"px"});//¿Ø¼þÐÂλÖÃ
e.preventDefault && e.preventDefault();
return false;
}
var x = e.pageX - _x;
var y = e.pageY - _y;
if(!_move && _resize){
var w = x + $("#vlayer-"+id).width();
var h = y + $("#vlayer-"+id).height();
return false;
}
if(self.opt.taskbar == 'top' && y < parseInt(self.opt.exheight,10)){
y = parseInt(self.opt.exheight,10);
}else{
if(y<0){
y = 0;
}
}
if(self.opt.taskbar == 'left' && x < parseInt(self.opt.exwidth,10)){
x = parseInt(obj.opt.exwidth,10);
}else{
if(x < 0){
x = 0;
}
}
var max_width = $(window).width();
var max_height = $(window).height();
var width = $("#"+id).width();
var height = $("#"+id).height();
if( (max_width - width) < x){
x = max_width - width;
}
if((max_height - height) < y){
y = max_height - height;
}
$("#vlayer-"+id).css({'top':y+"px",'left':x+"px"});//¿Ø¼þÐÂλÖÃ
e.preventDefault && e.preventDefault();
}).mouseup(function(e){
e = e || window.event;
_move = false;
if(_resize){
_resize = false;
self._vlayer_close(id,true);
}else{
self._vlayer_close(id);
}
e.preventDefault && e.preventDefault();
});
}
};
$.win = function(title,url,opts){
//¼ì²éÊÇ·ñ´°¿ÚÒÑ´æÔÚ
var open_id = false;
$("ul#phpok-taskbar li").each(function(i){
var txt = $(this).text();
if(txt == title){
open_id = $(this).attr('id');
}
});
if(open_id){
$("#"+open_id).click();
return false;
}
var max = $('body').width() - 770;
var this_max = 90;
$("ul.head_tab li").each(function(i){
this_max += parseInt($(this).outerWidth(true));
});
if(max <= this_max){
$.dialog.alert('Äúµ¯³öµÄ´°¿ÚÌ«¶àÁË£¬ÇëÏȹرռ¸¸öûÓÐÓõĴ°¿Ú');
return false;
}
var height = parseInt(($(window).height() - 45) * 0.8);
var exwidth = $('.c_left').parent().width();
if(!exwidth || exwidth == 'null' || exwidth == null){
exwidth = 0;
}
var defaults = {
'iframe':url,
'title':title,
'lock':false,
'taskbar':'top',
'exheight':45,
'exwidth':exwidth,
'height':height,
'move':true,
'win_max':true,
'win_min':true,
'is_max':true,
'win_900':true,
'win_resize':true
}
if($(window).width()<1600){
defaults.win_900 = false;
}
if($.win2.opt){
var opt = $.extend({},defaults,$.win2.opt, opts);
}else{
var opt = $.extend({},defaults, opts);
}
$.desktop.init(opt);
$.desktop.win_id();
$.desktop.win();
};
$.win2 = {
init:function(opts){
this.opt = opts;
}
};
})(jQuery);
/***********************************************************
Filename: {phpok}js/global.admin.js
Note : ºǫ́¹«¹²JS
Version : 4.0
Web : www.phpok.com
Author : qinggan
Update : 2013Äê9ÔÂ12ÈÕ
***********************************************************/
function alt_open(id,note)
{
if(!id || id == "undefined") return false;
if(!note || note == "undefined")
{
note = $("#"+id).attr("alt") ? $("#"+id).attr("alt") : $("#"+id).attr("title");
if(!note || note == "undefined")
{
return false;
}
}
$.dialog({
"id": "phpok_alt",
"title": false,
"cancel":false,
"padding":"10px 10px",
"follow": document.getElementById(id),
"content":note
});
}
function alt_close()
{
$.dialog.list["phpok_alt"].close();
}
//ͨÓøüÐÂÅÅÐò
function taxis(baseurl,default_value)
{
var url = baseurl;
if(!default_value || default_value == "undefined") default_value = "0";
var id_string = $.input.checkbox_join();
if(!id_string || id_string == "undefined"){
$.dialog.alert("ûÓÐÖ¸¶¨Òª¸üеÄÅÅÐòID£¡");
return false;
}
//È¡µÃÅÅÐòÖµÐÅÏ¢
var id_list = id_string.split(",");
var id_leng = id_list.length;
for(var i=0;i ',
'lock':true,
'ok':function(){},
'height':350,
'width':500,
'okVal':'¹Ø±ÕÔ¤ÀÀ'
});
}
}
//µ¯³ö´°¿Ú£¬Ñ¡ÔñÄ£°å
function phpok_tpl_open(id)
{
var url = get_url("tpl","open") + "&id="+id;
$.dialog.open(url,{
title: "Ä£°åÑ¡Ôñ",
lock : true,
width: "700px",
height: "70%",
resize: false
});
}
function phpok_admin_orderby(id,val)
{
$.dialog({
"title":"ÅÅÐòÉèÖÃ",
"content":' µ¹Ðò¡ý£¬ÊýÖµ´Ó¸ßÅŵ½µÍ£¬Ê¾Àý£ºZ¡úA£¬9¡ú1
ÕýÐò¡ü£¬ÊýÖµ´ÓµÍÅŵ½¸ß£¬Ê¾Àý£ºA¡úZ£¬1¡ú9
',
'lock':true,
"ok":function(){
var desc_asc = $("input[name=_phpok_tmp_desc_asc_"+id+"]:checked").val();
if(!desc_asc)
{
alert("ÇëÑ¡ÔñÅÅÐò·½Ê½");
return false;
}
val += " "+desc_asc;
var str = $("#"+id).val();
if(str)
{
str += ","+val;
}
else
{
str = val;
}
$("#"+id).val(str);
}
});
}
function goto_site(id,oldid)
{
$.dialog.confirm(p_lang('È·¶¨ÒªÇл»µ½ÍøÕ¾')+""+$('#top_site_id').find("option:selected").text()+" ",function(){
var url = get_url("index","site") + "&id="+id.toString();
direct(url);
},function(){
$("#top_site_id").val(oldid);
});
}
//Ìí¼Ó×Ô½ç˵×Ö¶Î
function ext_add(module)
{
var url = get_url('ext','create','id='+$.str.encode(module));
$.dialog.open(url,{
'title':'´´½¨À©Õ¹×Ö¶Î',
'width':'750px',
'height':'580px',
'resize':false,
'lock':true,
'ok':function(){
var iframe = this.iframe.contentWindow;
if (!iframe.document.body) {
alert('iframe»¹Ã»¼ÓÔØÍê±ÏÄØ');
return false;
};
iframe.save();
return false;
},
'okVal': 'Ìá½»ÅäÖÃ'
});
return true;
}
function ext_add2(id,module)
{
var url = get_url("ext","add") + "&module="+module+"&id="+id;
$.phpok.json(url,function(rs){
if(rs.status == 'ok'){
$.phpok.reload();
}else{
$.dialog.alert(rs.content);
return false;
}
});
}
/**
* ɾ³ýÀ©Õ¹×Ö¶Î
* @²ÎÊý id Ҫɾ³ýµÄID
* @²ÎÊý module Ö¸¶¨Ä£¿é
* @²ÎÊý title ±êÌ⣬ÓÃÓÚÌáʾ˵Ã÷
**/
function ext_delete(id,module,title)
{
$.dialog.confirm(p_lang('È·¶¨ÒªÉ¾³ýÀ©Õ¹×ֶΣº Â𣿠ɾ³ýºóÊDz»Äָܻ´µÄ£¡',''+title+' '),function(){
var url = get_url('ext','delete','module='+$.str.encode(module)+"&id="+id);
$.phpok.json(url,function(data){
if(data.status == 'ok'){
$.phpok.reload();
}else{
$.dialog.alert(rs.content);
return false;
}
})
})
}
//±à¼×Ö¶Î
function ext_edit(id,module)
{
var url = get_url("ext","edit",'id='+id);
url += "&module="+$.str.encode(module);
$.dialog.open(url,{
"title" : "±à¼À©Õ¹×Ö¶ÎÊôÐÔ",
"width" : "700px",
"height" : "95%",
"win_min":false,
"win_max":false,
"resize" : false,
"lock" : true,
'okVal': 'Ìá½»',
'ok': function(){
var iframe = this.iframe.contentWindow;
if (!iframe.document.body) {
alert('iframe»¹Ã»¼ÓÔØÍê±ÏÄØ');
return false;
};
iframe.save();
return false;
}
});
}
//ǰ̨³£ÓÃJSº¯Êý·â×°
;(function($){
$.admin = {
//¸ü»»TabÉèÖÃ
tab:function(val){
$("#float_tab li").each(function(i){
var name = $(this).attr("name");
if(name == val)
{
$(this).removeClass("tab_out").addClass("tab_over");
$("#"+val+"_setting").show();
}
else
{
$(this).removeClass("tab_over").addClass("tab_out");
$("#"+name+"_setting").hide();
}
});
},
group:function(obj){
var val = $(obj).attr('name');
$.each($(obj).parent().find('li'),function(i){
var name = $(this).attr('name');
$(this).removeClass('on');
$("#"+name+"_setting").hide();
});
//ÏÔʾµ±Ç°µÄ
$(obj).addClass('on');
$("#"+val+"_setting").show();
}
};
})(jQuery);
$(document).keydown(function(e){
window.history.forward(1);
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
});
(function(a){var t=a(document).data("func",{});a.smartMenu=a.noop;a.fn.smartMenu=function(e,i){var n=a("body"),r={name:"",offsetX:2,offsetY:2,textLimit:6,beforeShow:a.noop,afterShow:a.noop};var s=a.extend(r,i||{});var o=function(i){var n=i||e,r=i?Math.random().toString():s.name,l="",c="",d="smart_menu_";if(a.isArray(n)&&n.length){l=''+'
'+'
';a.each(n,function(e,i){if(e){l=l+' '}if(a.isArray(i)){a.each(i,function(e,i){var n=i.text,r="",c="",h=Math.random().toString().replace(".","");if(n){if(n.length>s.textLimit){n=n.slice(0,s.textLimit)+"¡";c=' title="'+i.text+'"'}if(a.isArray(i.data)&&i.data.length){r=''+o(i.data)+' '+n+" "+" "}else{r=''+''+n+" "+" "}l+=r;var f=t.data("func");f[h]=i.func;t.data("func",f)}})}});l=l+" "+"
"+"
"}return l},l=function(){var e="#smartMenu_",i="smart_menu_",n=a(e+s.name);if(!n.size()){a("body").append(o());a(e+s.name+" a").bind("click",function(){var e=a(this).attr("data-key"),i=t.data("func")[e];if(a.isFunction(i)){i.call(t.data("trigger"))}a.smartMenu.hide();return false});a(e+s.name+" li").each(function(){var t=a(this).attr("data-hover"),e=i+"li_hover";a(this).hover(function(){var n=a(this).siblings("."+e);n.removeClass(e).children("."+i+"box").hide();n.children("."+i+"a").removeClass(i+"a_hover");if(t){a(this).addClass(e).children("."+i+"box").show();a(this).children("."+i+"a").addClass(i+"a_hover")}})});return a(e+s.name)}return n};a(this).each(function(){this.oncontextmenu=function(e){if(a.isFunction(s.beforeShow)){s.beforeShow.call(this)}e=e||window.event;e.cancelBubble=true;if(e.stopPropagation){e.stopPropagation()}a.smartMenu.hide();var i=t.scrollTop();var n=l();if(n){var r=a(".smart_menu_box").show();var o=e.clientX+s.offsetX,c=a(window).scrollTop()+e.clientY+s.offsetY,d={wh:a(window).height(),ww:a(window).width(),mh:r.height(),mw:r.width()};r.hide();c=c+d.mh>=d.wh?c-=d.mh:c;o=o+d.mw>=d.ww?o-=d.mw:o;n.css({display:"block",left:o,top:c});t.data("target",n);t.data("trigger",this);if(a.isFunction(s.afterShow)){s.afterShow.call(this)}return false}}});if(!n.data("bind")){n.bind("click",a.smartMenu.hide).data("bind",true)}};a.extend(a.smartMenu,{hide:function(){var a=t.data("target");if(a&&a.css("display")==="block"){a.hide()}},remove:function(){var a=t.data("target");if(a){a.remove()}}})})(jQuery);