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

📄 modulesadmin.php

📁 在综合英文版XOOPS 2.09, 2.091, 2.092 的基础上正式发布XOOPS 2.09中文版 XOOPS 2.09x 版主要是PHP5升级、bug修正和安全补正: 1 全面兼容PHP 5.
💻 PHP
📖 第 1 页 / 共 3 页
字号:
						if (!$tplfile_handler->insert($tplfile)) {							$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法把模板文件 <b>'.$tpl['file'].'</b>  添加到数据库中.</span>';						} else {							$newtplid = $tplfile->getVar('tpl_id');							$msgs[] = '&nbsp;&nbsp;模板文件 <b>'.$tpl['file'].'</b> 已 添加到数据库中. (ID: <b>'.$newtplid.'</b>)';							// generate compiled file							include_once XOOPS_ROOT_PATH.'/class/template.php';							if (!xoops_template_touch($newtplid)) {								$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法编译模板文件 <b>'.$tpl['file'].'</b>.</span>';							} else {								$msgs[] = '&nbsp;&nbsp;模板文件 <b>'.$tpl['file'].'</b> 已编译.</span>';							}						}						unset($tpldata);					}				}				include_once XOOPS_ROOT_PATH.'/class/template.php';				xoops_template_clear_module_cache($newmid);				$blocks = $module->getInfo('blocks');				if ($blocks != false) {					$msgs[] = '添加显示区块...';					foreach ($blocks as $blockkey => $block) {						// break the loop if missing block config						if (!isset($block['file']) || !isset($block['show_func'])) {							break;						}						$options = '';						if (!empty($block['options'])) {							$options = trim($block['options']);						}						$newbid = $db->genId($db->prefix('newblocks').'_bid_seq');						$edit_func = isset($block['edit_func']) ? trim($block['edit_func']) : '';						$template = '';						if ((isset($block['template']) && trim($block['template']) != '')) {							$content =& xoops_module_gettemplate($dirname, $block['template'], true);						}						if (!$content) {							$content = '';						} else {							$template = trim($block['template']);						}						$block_name = addslashes(trim($block['name']));						$sql = "INSERT INTO ".$db->prefix("newblocks")." (bid, mid, func_num, options, name, title, content, side, weight, visible, block_type, c_type, isactive, dirname, func_file, show_func, edit_func, template, bcachetime, last_modified) VALUES ($newbid, $newmid, ".intval($blockkey).", '$options', '".$block_name."','".$block_name."', '', 0, 0, 0, 'M', 'H', 1, '".addslashes($dirname)."', '".addslashes(trim($block['file']))."', '".addslashes(trim($block['show_func']))."', '".addslashes($edit_func)."', '".$template."', 0, ".time().")";						if (!$db->query($sql)) {							$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法把区块 <b>'.$block['name'].'</b> 添加到数据库中! 数据库错误: <b>'.$db->error().'</b></span>';						} else {							if (empty($newbid)) {								$newbid = $db->getInsertId();							}							$msgs[] = '&nbsp;&nbsp;区块 <b>'.$block['name'].'</b> 已添加. 区块 ID: <b>'.$newbid.'</b>';							$sql = 'INSERT INTO '.$db->prefix('block_module_link').' (block_id, module_id) VALUES ('.$newbid.', -1)';							$db->query($sql);							if ($template != '') {								$tplfile =& $tplfile_handler->create();								$tplfile->setVar('tpl_refid', $newbid);								$tplfile->setVar('tpl_source', $content, true);								$tplfile->setVar('tpl_tplset', 'default');								$tplfile->setVar('tpl_file', $block['template']);								$tplfile->setVar('tpl_module', $dirname);								$tplfile->setVar('tpl_type', 'block');								$tplfile->setVar('tpl_desc', $block['description'], true);								$tplfile->setVar('tpl_lastimported', 0);								$tplfile->setVar('tpl_lastmodified', time());								if (!$tplfile_handler->insert($tplfile)) {									$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法把模板文件 <b>'.$block['template'].'</b>  添加到数据库中.</span>';								} else {									$newtplid = $tplfile->getVar('tpl_id');									$msgs[] = '&nbsp;&nbsp;模板 <b>'.$block['template'].'</b> 已 添加到数据库中. (ID: <b>'.$newtplid.'</b>)';									// generate compiled file									include_once XOOPS_ROOT_PATH.'/class/template.php';									if (!xoops_template_touch($newtplid)) {										$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法编译模板文件 <b>'.$block['template'].'</b>.</span>';									} else {										$msgs[] = '&nbsp;&nbsp;模板 <b>'.$block['template'].'</b> 已编译.</span>';									}								}							}						}						unset($content);					}					unset($blocks);				}				$configs = $module->getInfo('config');				if ($configs != false) {					if ($module->getVar('hascomments') != 0) {						include_once(XOOPS_ROOT_PATH.'/include/comment_constants.php');						array_push($configs, array('name' => 'com_rule', 'title' => '_CM_COMRULES', 'description' => '', 'formtype' => 'select', 'valuetype' => 'int', 'default' => 1, 'options' => array('_CM_COMNOCOM' => XOOPS_COMMENT_APPROVENONE, '_CM_COMAPPROVEALL' => XOOPS_COMMENT_APPROVEALL, '_CM_COMAPPROVEUSER' => XOOPS_COMMENT_APPROVEUSER, '_CM_COMAPPROVEADMIN' => XOOPS_COMMENT_APPROVEADMIN)));						array_push($configs, array('name' => 'com_anonpost', 'title' => '_CM_COMANONPOST', 'description' => '', 'formtype' => 'yesno', 'valuetype' => 'int', 'default' => 0));					}				} else {					if ($module->getVar('hascomments') != 0) {						$configs = array();						include_once(XOOPS_ROOT_PATH.'/include/comment_constants.php');						$configs[] = array('name' => 'com_rule', 'title' => '_CM_COMRULES', 'description' => '', 'formtype' => 'select', 'valuetype' => 'int', 'default' => 1, 'options' => array('_CM_COMNOCOM' => XOOPS_COMMENT_APPROVENONE, '_CM_COMAPPROVEALL' => XOOPS_COMMENT_APPROVEALL, '_CM_COMAPPROVEUSER' => XOOPS_COMMENT_APPROVEUSER, '_CM_COMAPPROVEADMIN' => XOOPS_COMMENT_APPROVEADMIN));						$configs[] = array('name' => 'com_anonpost', 'title' => '_CM_COMANONPOST', 'description' => '', 'formtype' => 'yesno', 'valuetype' => 'int', 'default' => 0);					}				}				// RMV-NOTIFY				if ($module->getVar('hasnotification') != 0) {					if (empty($configs)) {						$configs = array();					}					// Main notification options		            include_once XOOPS_ROOT_PATH . '/include/notification_constants.php';		            include_once XOOPS_ROOT_PATH . '/include/notification_functions.php';					$options = array();					$options['_NOT_CONFIG_DISABLE'] = XOOPS_NOTIFICATION_DISABLE;					$options['_NOT_CONFIG_ENABLEBLOCK'] = XOOPS_NOTIFICATION_ENABLEBLOCK;					$options['_NOT_CONFIG_ENABLEINLINE'] = XOOPS_NOTIFICATION_ENABLEINLINE;					$options['_NOT_CONFIG_ENABLEBOTH'] = XOOPS_NOTIFICATION_ENABLEBOTH;					//$configs[] = array ('name' => 'notification_enabled', 'title' => '_NOT_CONFIG_ENABLED', 'description' => '_NOT_CONFIG_ENABLEDDSC', 'formtype' => 'yesno', 'valuetype' => 'int', 'default' => 1);					$configs[] = array ('name' => 'notification_enabled', 'title' => '_NOT_CONFIG_ENABLE', 'description' => '_NOT_CONFIG_ENABLEDSC', 'formtype' => 'select', 'valuetype' => 'int', 'default' => XOOPS_NOTIFICATION_ENABLEBOTH, 'options' => $options);					// Event-specific notification options					// FIXME: doesn't work when update module... can't read back the array of options properly...  " changing to &quot;		            $options = array();		            $categories =& notificationCategoryInfo('',$module->getVar('mid'));		            foreach ($categories as $category) {		                $events =& notificationEvents ($category['name'], false, $module->getVar('mid'));		                foreach ($events as $event) {							if (!empty($event['invisible'])) {								continue;							}		                    $option_name = $category['title'] . ' : ' . $event['title']; 		                	$option_value = $category['name'] . '-' . $event['name'];		                	$options[$option_name] = $option_value;				        }            		}					$configs[] = array ('name' => 'notification_events', 'title' => '_NOT_CONFIG_EVENTS', 'description' => '_NOT_CONFIG_EVENTSDSC', 'formtype' => 'select_multi', 'valuetype' => 'array', 'default' => array_values($options), 'options' => $options);				}				if ($configs != false) {					$msgs[] = '添加模块配置数据...';					$config_handler =& xoops_gethandler('config');					$order = 0;					foreach ($configs as $config) {						$confobj =& $config_handler->createConfig();						$confobj->setVar('conf_modid', $newmid);						$confobj->setVar('conf_catid', 0);						$confobj->setVar('conf_name', $config['name']);						$confobj->setVar('conf_title', $config['title'], true);						$confobj->setVar('conf_desc', $config['description'], true);						$confobj->setVar('conf_formtype', $config['formtype']);						$confobj->setVar('conf_valuetype', $config['valuetype']);						$confobj->setConfValueForInput($config['default'], true);						//$confobj->setVar('conf_value', $config['default'], true);						$confobj->setVar('conf_order', $order);						$confop_msgs = '';						if (isset($config['options']) && is_array($config['options'])) {							foreach ($config['options'] as $key => $value) {								$confop =& $config_handler->createConfigOption();								$confop->setVar('confop_name', $key, true);								$confop->setVar('confop_value', $value, true);								$confobj->setConfOptions($confop);								$confop_msgs .= '<br />&nbsp;&nbsp;&nbsp;&nbsp;配置参数已添加. 名称: <b>'.$key.'</b> 值: <b>'.$value.'</b>';								unset($confop);							}						}						$order++;						if ($config_handler->insertConfig($confobj) != false) {							$msgs[] = '&nbsp;&nbsp;配置参数 <b>'.$config['name'].'</b>  已添加到数据库中.'.$confop_msgs;						} else {							$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法把参数 <b>'.$config['name'].'</b>  添加到数据库中.</span>';						}						unset($confobj);					}					unset($configs);				}			}			$groups =& $xoopsUser->getGroups();			// retrieve all block ids for this module			$blocks =& XoopsBlock::getByModule($newmid, false);			$msgs[] = '设置群组权限...';			$gperm_handler =& xoops_gethandler('groupperm');			foreach ($groups as $mygroup) {				if ($gperm_handler->checkRight('module_admin', 0, $mygroup)) {					$mperm =& $gperm_handler->create();					$mperm->setVar('gperm_groupid', $mygroup);					$mperm->setVar('gperm_itemid', $newmid);					$mperm->setVar('gperm_name', 'module_admin');					$mperm->setVar('gperm_modid', 1);					if (!$gperm_handler->insert($mperm)) {						$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法为群组 ID <b>'.$mygroup.'</b> 添加管理权限</span>';					} else {						$msgs[] = '&nbsp;&nbsp;群组ID <b>'.$mygroup.'</b>管理权限已添加';					}					unset($mperm);				}				$mperm =& $gperm_handler->create();				$mperm->setVar('gperm_groupid', $mygroup);				$mperm->setVar('gperm_itemid', $newmid);				$mperm->setVar('gperm_name', 'module_read');				$mperm->setVar('gperm_modid', 1);				if (!$gperm_handler->insert($mperm)) {					$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法添加群组 ID: <b>'.$mygroup.'</b> 的使用权限</span>';				} else {					$msgs[] = '&nbsp;&nbsp;已添加群组 ID: <b>'.$mygroup.'</b> 的使用权限';				}				unset($mperm);				foreach ($blocks as $blc) {					$bperm =& $gperm_handler->create();					$bperm->setVar('gperm_groupid', $mygroup);					$bperm->setVar('gperm_itemid', $blc);					$bperm->setVar('gperm_name', 'block_read');					$bperm->setVar('gperm_modid', 1);					if (!$gperm_handler->insert($bperm)) {						$msgs[] = '&nbsp;&nbsp;<span style="color:#ff0000;">ERROR: 无法添加区块使用权限. 区块 ID: <b>'.$blc.'</b> 群组 ID: <b>'.$mygroup.'</b></span>';					} else {						$msgs[] = '&nbsp;&nbsp;已添加区块使用权限. 区块 ID: <b>'.$blc.'</b> 群组 ID: <b>'.$mygroup.'</b>';					}					unset($bperm);				}			}			unset($blocks);			unset($groups);			// execute module specific install script if any			$install_script = $module->getInfo('onInstall');			if (false != $install_script && trim($install_script) != '') {				include_once XOOPS_ROOT_PATH.'/modules/'.$dirname.'/'.trim($install_script);				if (function_exists('xoops_module_install_'.$dirname)) {					$func = 'xoops_module_install_'.$dirname;					if (!$func($module)) {						$msgs[] = '无法执行 '.$func;					} else {						$msgs[] = '<b>'.$func.'</b> 执行成功.';					}				}			}			$ret = '<p><code>';			foreach ($msgs as $m) {				$ret .= $m.'<br />';			}			unset($msgs);			unset($errs);			$ret .= '</code><br />'.sprintf(_MD_AM_OKINS, "<b>".$module->getVar('name')."</b>").'</p>';			unset($module);			return $ret;		} else {			$ret = '<p>';			foreach ($errs as $er) {				$ret .= '&nbsp;&nbsp;'.$er.'<br />';			}			unset($msgs);			unset($errs);			$ret .= '<br />'.sprintf(_MD_AM_FAILINS, '<b>'.$dirname.'</b>').'&nbsp;'._MD_AM_ERRORSC.'</p>';

⌨️ 快捷键说明

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