⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 acp_perms.js

📁 sabreipb 2.1.6 utf-8中文版本!
💻 JS
📖 第 1 页 / 共 2 页
字号:
//------------------------------------------// Invision Power Board v2.1// ACP Specific JS File// (c) 2005 Invision Power Services, Inc.//// //------------------------------------------var _this;/*-------------------------------------------------------------------------*/// Initiate object/*-------------------------------------------------------------------------*/function acpperms(){	this.div_wrapper    = document.getElementById('perms-wrapper');	this.div_content    = document.getElementById('perms-content');	this.div_drag       = document.getElementById('perms-drag');	this.div_status     = document.getElementById('perms-status');	this.div_status_msg = document.getElementById('perms-status-msg');	this.obj_center     = new center_div();	this.form_code      = 'section=admin&act=acpperms';	this.initialized    = 0;	this.member_id      = 0;	this.xmlobj         = null;	this.loading_fired  = 0;	this.save_cache     = new Array();	this.perm_main      = '';	this.perm_child     = '';	this.reg_tabs       = new Array( 'content', 'lookandfeel', 'tools', 'components', 'admin' );}/*-------------------------------------------------------------------------*/// Save perm bits/*-------------------------------------------------------------------------*/function bbedit_acpperms_save_group( perm_main, perm_child, doreturn ) {}acpperms.prototype.save_group = function( perm_main, perm_child, member_id, result ){	//----------------------------------	// INIT	//----------------------------------		this.member_id = member_id;		//----------------------------------	// Sync...	//----------------------------------		this.perm_main  = perm_main;	this.perm_child = perm_child;	tab             = this.perm_main;		/*--------------------------------------------*/	// Main function to do on request	// Must be defined first!! Chill	/*--------------------------------------------*/		_this = this;		this.do_request_function = function()	{		//----------------------------------		// Ignore unless we're ready to go		//----------------------------------				if ( ! _this.xmlobj.readystate_ready_and_ok() )		{			_this.show_loading( '正在保存...' );			return;		}				_this.hide_loading();				//----------------------------------		// INIT		//----------------------------------				var html = _this.xmlobj.xmlhandler.responseText;				_this.div_content.innerHTML = html;				//----------------------------------		// INIT tabs		//----------------------------------				_this.init_tabs();	}		this.xmlobj = new ajax_request();	this.xmlobj.onreadystatechange( this.do_request_function );		//----------------------------------	// LOAD XML	//----------------------------------		this.xmlobj.process( ipb_var_base_url + '&' + this.form_code + '&code=acpperms-xml-save-group&member_id=' + this.member_id  + '&perm_child=' + this.perm_child + '&perm_main=' + this.perm_main + '&result=' + result );}/*-------------------------------------------------------------------------*/// Loads and init's display/*-------------------------------------------------------------------------*/function bbedit_acpperms_undo_bits() {}acpperms.prototype.undo_bits = function(){	//----------------------------------	// Loop through save bits cache....	//----------------------------------		for( var i in this.save_cache )	{		var perm_bit   = i;		var switcheroo = document.getElementById( 'pb_' + perm_bit ).value ? 0 : 1;		var classname  = switcheroo ? 'perms-red' : 'perms-green';				//----------------------------------		// Reset....		//----------------------------------				document.getElementById( 'pb_' + perm_bit ).value = switcheroo;				document.getElementById( 'td_' + perm_bit + '_a' ).className = classname;		document.getElementById( 'td_' + perm_bit + '_b' ).className = classname;		document.getElementById( 'td_' + perm_bit + '_c' ).className = classname;		document.getElementById( 'td_' + perm_bit + '_d' ).className = classname;				//----------------------------------		// Change img classname		//----------------------------------				try		{			if ( ! switcheroo )			{				document.getElementById( 'img-' + perm_bit + '-cross' ).className = 'img-boxed-off';				document.getElementById( 'img-' + perm_bit + '-tick' ).className  = 'img-boxed';			}			else			{				document.getElementById( 'img-' + perm_bit + '-cross' ).className = 'img-boxed';				document.getElementById( 'img-' + perm_bit + '-tick' ).className  = 'img-boxed-off';			}		}		catch(e)		{			//alert(e);		}	}		//----------------------------------	// Reset the array....	//----------------------------------		this.save_cache = new Array();		//----------------------------------	// Reset save / undo buttons....	//----------------------------------		document.getElementById( 'perms-save-box' ).className = 'input-ok-content';	document.getElementById( 'perms-undo-box' ).className = 'input-ok-content';		return false;}/*-------------------------------------------------------------------------*/// Loads and init's display/*-------------------------------------------------------------------------*/function bbedit_acpperms_clicked() {}acpperms.prototype.clicked = function( perm_bit, onoff ){	//----------------------------------	// Function off, but image clicked?	//----------------------------------		if ( perm_bit != 'mainbit' && ( ! document.getElementById( 'pb_mainbit' ).value || document.getElementById( 'pb_mainbit' ).value == 0 ) )	{		alert( "To enabled individual access permissions, please enable 'ALLOW ACCESS TO THIS FUNCTION'" );		return false;	}		//----------------------------------	// Just clicked mainbit?	//----------------------------------		if ( perm_bit == 'mainbit' )	{		this.save_mainbit( onoff );		return false;	}		//----------------------------------	// Add to save_cache	//----------------------------------		this.save_cache[ perm_bit ] = onoff;		//----------------------------------	// Change save / undo button img	//----------------------------------		document.getElementById( 'perms-save-box' ).className = 'input-warn-content';	document.getElementById( 'perms-undo-box' ).className = 'input-warn-content';		//----------------------------------	// Add to save_cache	//----------------------------------		document.getElementById( 'pb_' + perm_bit ).value = onoff;		//----------------------------------	// Change row colours	//----------------------------------		var classname = onoff ? 'perms-green' : 'perms-red';		try	{		document.getElementById( 'td_' + perm_bit + '_a' ).className = classname;		document.getElementById( 'td_' + perm_bit + '_b' ).className = classname;		document.getElementById( 'td_' + perm_bit + '_c' ).className = classname;		document.getElementById( 'td_' + perm_bit + '_d' ).className = classname;	}	catch(e)	{		//alert(e);	}		//----------------------------------	// Change img classname	//----------------------------------		try	{		if ( onoff )		{			document.getElementById( 'img-' + perm_bit + '-cross' ).className = 'img-boxed-off';			document.getElementById( 'img-' + perm_bit + '-tick' ).className  = 'img-boxed';		}		else		{			document.getElementById( 'img-' + perm_bit + '-cross' ).className = 'img-boxed';			document.getElementById( 'img-' + perm_bit + '-tick' ).className  = 'img-boxed-off';		}	}	catch(e)	{		//alert(e);	}}/*-------------------------------------------------------------------------*/// Inits tabs/*-------------------------------------------------------------------------*/function bbedit_acpperms_init_tabs() {}acpperms.prototype.init_tabs = function(){	//----------------------------------	// Change style depending on status	//----------------------------------		for ( i = 0 ; i < this.reg_tabs.length ; i++ )	{		var tab = this.reg_tabs[ i ];				if ( ! document.getElementById( 'tab_' + tab ).value || document.getElementById( 'tab_' + tab ).value == 0 || typeof(document.getElementById( 'tab_' + tab ).value) == 'undefined' )		{			// Change text colo(?:u)?r			document.getElementById( 'href_' + tab ).style.color = '#777';						// Change image too...			document.getElementById( 'img-' + tab + '-cross' ).className = 'img-boxed';		}		else		{			// Change text colo(?:u)?r			document.getElementById( 'href_' + tab ).style.color = '#000';						// Change image too...			document.getElementById( 'img-' + tab + '-tick' ).className = 'img-boxed';		}	}}/*-------------------------------------------------------------------------*/// Save perm bits/*-------------------------------------------------------------------------*/function bbedit_acpperms_save_bits() {}acpperms.prototype.save_bits = function( doreturn ){	//----------------------------------	// If it's the first screen loaded	// after clicking the tab, the this.perm_child	// won't have any info.. so grab it from the HTML	//----------------------------------		this.perm_child = document.getElementById('perms-perm-child-id').value;		//----------------------------------	// INIT	//----------------------------------		var urlbits  = new Array();	var needsave = 0;		for( var i in this.save_cache )	{		var perm_bit = i;				if ( perm_bit )		{			needsave = 1;		}				//----------------------------------		// Add to array		//----------------------------------				urlbits[ 'pbfs_' + perm_bit ] = this.save_cache[i];	}		//----------------------------------	// Need to save?	//----------------------------------		if ( needsave == 0 )	{		return false;	}		//----------------------------------	// Show neat little "save.." msg	// Not always here, so...	//----------------------------------		try	{		document.getElementById( 'perms-save-box' ).className = 'input-ok-content';		document.getElementById( 'perms-save-box' ).innerHTML = "正在保存...";	}	catch(e) { }		/*--------------------------------------------*/	// Main function to do on request	// Must be defined first!! Chill	/*--------------------------------------------*/		_this = this;		this.do_request_function = function()	{		//----------------------------------		// Ignore unless we're ready to go		//----------------------------------				if ( ! _this.xmlobj.readystate_ready_and_ok() )		{			_this.show_loading( '正在保存...' );			return;		}				_this.hide_loading();				//----------------------------------		// INIT		//----------------------------------				var html = _this.xmlobj.xmlhandler.responseText;	}		this.xmlobj = new ajax_request();	this.xmlobj.onreadystatechange( this.do_request_function );		//----------------------------------	// LOAD XML	//----------------------------------		this.xmlobj.process( ipb_var_base_url + '&' + this.form_code + '&code=acpperms-xml-save-bits&member_id=' + this.member_id																 + '&perm_child=' + this.perm_child																 + '&perm_main=' + this.perm_main, 'POST', this.xmlobj.format_for_post( urlbits )  );		this.save_cache = new Array();		if ( doreturn == 1 )	{		this.init( this.perm_main, this.member_id, this.perm_child );	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -