亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? common.lib.php

?? 架設(shè)ROSE私服必備之物 ROSE數(shù)據(jù)庫
?? PHP
?? 第 1 頁 / 共 2 頁
字號:
<?php/*** Web based SQLite management* Some functions* @package SQLiteManager* @author Fr閐閞ic HENNINOT* @version $Id: common.lib.php,v 1.126 2006/04/18 07:18:52 freddy78 Exp $ $Revision: 1.126 $*//*** check if SQLite extension is loaded, and if not load it.*/function CheckExtension($extName) {	$SQL_SERVER_OS = strtoupper(substr(PHP_OS, 0, 3));	if($SQL_SERVER_OS == 'WIN') { $preffix= 'php_'; $suffix = '.dll'; }	elseif($SQL_SERVER_OS == 'NET') { $preffix= 'php_'; $suffix = '.nlm'; }	elseif(($SQL_SERVER_OS == 'LIN') || ($SQL_SERVER_OS == 'DAR')) { $preffix= ''; $suffix = '.so'; }	$extensions = get_loaded_extensions();	foreach ($extensions as $key=>$ext) $extensions[$key] = strtolower($ext);	if (!extension_loaded($extName) && !in_array($extName, get_loaded_extensions())) {    	if(DEBUG) {    		$oldLevel = error_reporting();    		error_reporting(E_ERROR);    		$extensionLoaded = dl($preffix.$extName.$suffix);			error_reporting($oldLevel);    	} else {    		$extensionLoaded = @dl($preffix.$extName.$suffix);    	}    	if ($extensionLoaded) {    	    return true;    	} else {			return false;		}	} else return true;}/*** Display error message* * @param string $message */function displayError($message){	echo '	<center>		<table width="80%" style="border: 1px solid red;" class="error">			<tr><td align="center"><b>'.$GLOBALS['traduct']->get(9).' :</b></td></tr>			<tr><td align="left"><span style="color: red"><b>'.$message.'</b></span></td></tr>		</table>	</center>';	return;}/*** return the condition*/function displayCondition($authType){	global $SQLiteManagerAuth;	return (!WITH_AUTH || (							isset($SQLiteManagerAuth) &&  $SQLiteManagerAuth->getAccess($authType)							)); }/*** Get plugins array*/function getPlugins(){	$res = array();	if ($dir = @opendir('plugins')) {		while ($element = readdir($dir)) {			if (substr($element,0,1) != '.' && $element!='CVS')				if (is_dir('plugins/'.$element))					$res[] = 'plugins/'.$element.'/';		}		closedir($dir);	} 	return $res;}/*** Display the global menu on the right pan, it' dependant of context*/function displayMenuTitle(){	global $SQLiteManagerAuth, $workDb;	$linkBase = 'main.php?dbsel='.$GLOBALS['dbsel'];	foreach($GLOBALS['dbItems'] as $Items) if(isset($GLOBALS[strtolower($Items)])) $linkBase .= '&'.strtolower($Items).'='.$GLOBALS[strtolower($Items)];	$out = '';		$menuItems[] = array('txt'=> $GLOBALS['traduct']->get(72),'url'=> $linkBase.'&action=properties');	if(isset($GLOBALS['table']) && ($GLOBALS['table']!='')){		if(isset($_REQUEST['currentPage'])) $valCurrent = $_REQUEST['currentPage'];		else $valCurrent = $GLOBALS['action'];		$Context='Table';		//Items : txt:Text, url:Link, enabled, type, hint, confirm, ...		$menuItems[] = array('txt'=> $GLOBALS['traduct']->get(73),'url'=> $linkBase.'&action=browseItem');	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(74),'url'=> $linkBase.'&action=sql', 'enabled'=> (displayCondition('execSQL')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(206),'url'=> $linkBase.'&action=select');	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(75),'url'=> $linkBase.'&action=insertElement&currentPage='.$valCurrent, 'enabled'=> (displayCondition('data') &&  !$workDb->isReadOnly()));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(222),'url'=> $linkBase.'&action=operation', 'enabled'=> (displayCondition('properties')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(76),'url'=> $linkBase.'&action=export', 'enabled'=> (displayCondition('export')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(77),'url'=> $linkBase.'&action=empty', 'confirm'=> $GLOBALS['traduct']->get(79), 'enabled'=> (displayCondition('empty') &&  !$workDb->isReadOnly()));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(15),'url'=> $linkBase.'&action=delete', 'confirm'=> $GLOBALS['traduct']->get(80), 'enabled'=> (displayCondition('del') &&  !$workDb->isReadOnly()));        	} elseif(isset($GLOBALS['view']) && ($GLOBALS['view']!='')) {		$Context='View';		$menuItems[] = array('txt'=> $GLOBALS['traduct']->get(73),'url'=> $linkBase.'&action=browseItem');	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(74),'url'=> $linkBase.'&action=sql', 'enabled'=> (displayCondition('execSQL')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(206,'Select'),'url'=> $linkBase.'&action=select', 'enabled'=> (displayCondition('execSQL')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(76),'url'=> $linkBase.'&action=export', 'enabled'=> (displayCondition('export')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(81),'url'=> $linkBase.'&action=add', 'enabled'=> (displayCondition('properties')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(15),'url'=> $linkBase.'&action=delete', 'confirm'=> $GLOBALS['traduct']->get(82), 'enabled'=> (displayCondition('del') &&  !$workDb->isReadOnly()));	} elseif(isset($GLOBALS['function']) && ($GLOBALS['function']!='')) {		$Context='Function';	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(74),'url'=> $linkBase.'&action=sql', 'enabled'=> (displayCondition('execSQL')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(76),'url'=> $linkBase.'&action=export', 'enabled'=> (displayCondition('export')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(81),'url'=> $linkBase.'&action=add', 'enabled'=> (displayCondition('properties')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(15),'url'=> $linkBase.'&action=delete', 'confirm'=> $GLOBALS['traduct']->get(78), 'enabled'=> (displayCondition('del') &&  !$workDb->isReadOnly()));	} elseif(isset($GLOBALS['trigger']) && ($GLOBALS['trigger']!='')) {		$Context='Trigger';	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(74),'url'=> $linkBase.'&action=sql', 'enabled'=> (displayCondition('execSQL')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(81),'url'=> $linkBase.'&action=add', 'enabled'=> (displayCondition('properties')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(15),'url'=> $linkBase.'&action=delete', 'confirm'=> $GLOBALS['traduct']->get(83), 'enabled'=> (displayCondition('del') &&  !$workDb->isReadOnly()));	} else {		$Context='Database';		$hintContext = html_entity_decode($GLOBALS['traduct']->get(131), ENT_NOQUOTES, $GLOBALS['charset']);		$menuItems[] = array('txt'=> $GLOBALS['traduct']->get(84),'url'=> $linkBase.'&action=options');	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(74),'url'=> $linkBase.'&action=sql', 'enabled'=> (displayCondition('execSQL')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(76),'url'=> $linkBase.'&action=export', 'enabled'=> (displayCondition('export')));	    $menuItems[] = array('txt'=> $GLOBALS['traduct']->get(15),'url'=> $linkBase.'&action=del', 'confirm'=> $GLOBALS['traduct']->get(85), 'enabled'=> (displayCondition('del')));	}	if (!isset($hintContext)) $hintContext = $GLOBALS['itemTranslated'][$Context];	if(ALLOW_EXEC_PLUGIN){		$plugins = getPlugins();		foreach($plugins as $plugin_path) {			$plugin_menu = array();		    include_once($plugin_path.'plugin.php');			if (@$plugin_menu[$Context]) {				$menu = 'plugin_'.$Context.'Menu';				$pluginItems = @$$menu;				if (isset($pluginsItems) && @count($pluginsItems))					foreach ($pluginsItems as $key=>$item) 						if (array_key_exists('hint',$item)) 							$pluginItems[$key]['hint'] = $hintContext.' : '.$plugin_name.' : '.$item['hint'];						elseif (isset($item['txt']))							$pluginItems[$key]['hint'] = $hintContext.' : '.$plugin_name.' : '.$item['txt'];				if (isset($pluginItems))					foreach ($pluginItems as $item) $pluginsItems[] = $item;			}		}	  		if (isset($pluginsItems)) {			$menuItems[] = array('type'=>'_cmSplit');			$menuItems[] = array('type'=>'folder', 'txt'=> $GLOBALS['traduct']->get(211,'Plugins'), 'url'=>'#');			foreach ($pluginsItems as $item) $menuItems[] = $item;			$menuItems[] = array('type'=>'endfolder');		}		$menuItems[] = array('type'=>'_cmSplit');	}	/* Javascript Menu */	$out .= "\n\t\t\t".'<script type="text/javascript">'.          "\n\t\t\t\t".'var jsMenu = [';  $icon=''; $inFolder='';	$target='main';	foreach ($menuItems as $item) {   	  $confirm = '';	  $title = (isset($item['txt']))? $item['txt'] : '';    $icon = (array_key_exists('icon',$item))?'<img class="seq1" src="'.$item['icon'].'"><img class="seq2" src="'.$item['icon'].'">':'&nbsp;';    $description = (array_key_exists('hint',$item))? $item['hint'] : $hintContext.' : '.$title;     $description = addslashes(html_entity_decode($description, ENT_NOQUOTES, $GLOBALS['charset']));		if (!array_key_exists('enabled',$item) || @$item['enabled']) {			$url = (isset($item['url']))? $item['url'] : '';			if (isset($item['confirm'])) {				$confirm = addslashes(html_entity_decode($item['confirm'], ENT_NOQUOTES, $GLOBALS['charset']));			}		} else { 			$url = '';			$title = '<i>'.$title.'</i>';			$description = '[DISABLED] '.$description;		}				if ($url=='') $url='#';		$line = "\n\t\t\t\t".$inFolder."['$icon', '$title', '$url', '$target', '$description', '$confirm'";				if (!isset($item['type'])) {			$line .= '],';		}		else			if ($item['type']=='endfolder') {				$out = substr($out,0,strlen($out)-1);				$line = "\n\t\t\t\t".'],';				$inFolder='';			} elseif ($item['type']=='folder')			{				$line .= ',';				$inFolder .= "\t";			} else {				$line = "\n\t\t\t\t".$item['type'].',';			}	    		$out .= $line;	}	$out = substr($out,0,strlen($out)-1);	global $jsmenu_style;	if (!isset($jsmenu_style)) $jsmenu_style = 'hbr';	$out .= "\n\t\t\t\t"."];".  "\n\t\t\t\t"."cmDraw ('CommandMenu', jsMenu, '$jsmenu_style', cmThemeOffice, 'ThemeOffice');".  "\n\t\t\t"."</script>"."\n\t\t";/* */  echo '<!-- common.lib.php : displayMenuTitle() -->'."\n";			echo '	<div align="center">		<table class="menu" cellspacing="0" cellpadding="0">		<tr><td>		<div id="CommandMenu">'.$out.'</div>		</td></tr>		</table>	</div>';}/*** Display pan header** @param string $frame target where the header will be display* @param bool $withTitle display title*/function displayHeader($frame, $withTitle=true){	global $workDb;	$GlobalTheme = $GLOBALS['localtheme'].'/'.$frame;	if(is_readable('theme/'.$GLOBALS['localtheme'].'/menu/theme.css'))		$menuTheme = $GLOBALS['localtheme'];  else   	$menuTheme = 'default';	?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>	<head>	<title><?php echo $GLOBALS['traduct']->get(3)." ".$GLOBALS['SQLiteVersion'] ?></title>	<meta http-equiv="Pragma" content="no-cache">	<meta http-equiv="expires" content="0">	<meta http-equiv="content-type" content="text/html;charset=<?php echo $GLOBALS['charset'] ?>">		<style type="text/css">	/* to add later in all themes, now can be supersed by theme*/	table.menu { border-bottom: 1px solid black; width: 80%;}	table.menuButtons { width: 70%; }	td.viewPropTitle { border: 1px solid white; }	td.viewProp {	border: 1px solid white; }	table.home { width: 90%; text-align: center; }	td.boxtitle { width: 49%; text-align: center; }	td.boxtitlespace { width: 2%; font-size:0px; padding:0px; }	h5 { margin-bottom: 3px; font-size: 12px; }	table.query { width: 60%; margin-top: 10px; }	div.BrowseOptions { text-align:left; }	table.BrowseOption { text-align:left; }	div.TableOptions { text-align: left; }	table.Indexes { margin: 5px; width: 70%; border: thin grey solid; text-align: center; }	body { font-size: 12px; }  .Tip { font-size: 10px; background-color : Silver; }  .time { font-size: 10px; float: center }  div.Rights { border: 1px solid blue; }	</style>	<link href="theme/<?php echo $menuTheme?>/menu/theme.css" rel="stylesheet" type="text/css">	<link href="theme/<?php echo $GlobalTheme?>.css" rel="stylesheet" type="text/css">	<script src="include/function.js" type="text/javascript" language="javascript"></script>	<script src="include/JSCookMenu.js" type="text/javascript" language="javascript"></script>		<script src="theme/<?php echo $menuTheme?>/menu/theme.js" type="text/javascript" language="javascript"></script>	<?phpif(isset($GLOBALS['GlobalCalendar'])) echo $GLOBALS['GlobalCalendar']->get_load_files_code() . "\n";?>	</head>	<body>	<?php	if( ($frame == 'main') && ($withTitle) && ($GLOBALS['dbsel']) ){		echo '<h2 class="sqlmVersion">'.$GLOBALS['traduct']->get(131).' : <a href="main.php?dbsel='.$GLOBALS['dbsel'].'" style="text-decoration: none;"><span style="color: red;">'.$GLOBALS['tabInfoDb']['name'].'</span></a>';		foreach($GLOBALS['dbItems'] as $Items) {			if(!empty($GLOBALS[strtolower($Items)])) echo ' - '.$GLOBALS['itemTranslated'][$Items].' <a href="main.php?dbsel='.$GLOBALS['dbsel'].'&amp;'.strtolower($Items).'='.$GLOBALS[strtolower($Items)].'" style="text-decoration: none;" target="main"><span style="color: blue;">'.$GLOBALS[strtolower($Items)].'</span></a>';				}		echo '</h2>'."\n";		if($workDb->isReadOnly()){			if($workDb->isReadable()) $message = $GLOBALS['traduct']->get(155);			else $message = $GLOBALS['traduct']->get(232);			echo '<table width="80%" align="center"><tr><td style="font-size: 10px; border: 1px solid red; color: red; align: center;">'.$message.'</td></tr></table>';		}	}}/*** Display add form dependent of context** @param string $type represent the context*/function formAddItem($type){	switch($type){		case 'Table':			echo '	<form name="add'.$type.'" action="main.php" method="POST" target="main">					<span style="font-size: 12px;">'.$GLOBALS['traduct']->get(43).' ==>&nbsp;'.$GLOBALS['traduct']->get(19).					' : <input type="text" name="TableName" size="20" class="small-input"> - 					<input type="text" name="nbChamps" size="3" class="small-input">&nbsp;'.$GLOBALS['traduct']->get(44).'&nbsp;					<input class="button" type="submit" value="'.$GLOBALS['traduct']->get(69).'">					<input type="hidden" name="dbsel" value="'.$GLOBALS['dbsel'].'">					<input type="hidden" name="action" value="add_'.strtolower($type).'">					</span>					</form>';			break;		case 'View':			echo '<a href="main.php?dbsel='.$GLOBALS['dbsel'].'&amp;action=add_view" class="propItemTitle" target="main">&nbsp;&raquo;&nbsp;'.$GLOBALS['traduct']->get(87).'</a>';			break;		case 'Trigger':			echo '<a href="main.php?dbsel='.$GLOBALS['dbsel'].'&amp;action=add_trigger" class="propItemTitle" target="main">&nbsp;&raquo;&nbsp;'.$GLOBALS['traduct']->get(88).'</a>';

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲男人天堂av| 亚洲成av人片| 欧美成人精品高清在线播放| 欧美久久久久中文字幕| 日韩精品中午字幕| 国产精品久久毛片av大全日韩| 国产欧美精品在线观看| 亚洲精品国产精华液| 青娱乐精品在线视频| 毛片av中文字幕一区二区| 成人激情午夜影院| 欧美亚男人的天堂| 欧美日韩中文另类| 日本一二三四高清不卡| 激情偷乱视频一区二区三区| 91免费版pro下载短视频| 欧美日韩午夜在线视频| 国产精品久久99| 国产露脸91国语对白| 欧美日韩一区小说| 亚洲黄色小说网站| 国产成a人亚洲| 日韩欧美在线影院| 蜜臀国产一区二区三区在线播放| 91美女在线视频| 中文字幕在线不卡一区| 成+人+亚洲+综合天堂| 久久精品综合网| 国产成人亚洲精品青草天美| 久久久一区二区| 成人av网站大全| 亚洲成人福利片| 欧美日韩精品一二三区| 午夜精品久久一牛影视| 这里是久久伊人| 国产一区不卡视频| 欧美国产精品中文字幕| 日本精品一区二区三区四区的功能| 亚洲欧美另类小说视频| 91黄色小视频| 国产麻豆午夜三级精品| 一区二区久久久久久| 欧美日韩国产免费| 成人va在线观看| 精品一区二区三区视频在线观看| 国产精品久久久久影院色老大| 色丁香久综合在线久综合在线观看| 一区二区欧美国产| 久久久91精品国产一区二区精品 | 美腿丝袜亚洲色图| 国产日产精品一区| 欧美久久久久久久久中文字幕| 国产不卡视频在线播放| 天天色综合天天| 亚洲在线免费播放| 亚洲欧洲另类国产综合| 精品国产凹凸成av人网站| 欧美福利电影网| 一本大道久久a久久综合婷婷| 亚洲一区av在线| 国产精品欧美经典| 久久只精品国产| 国产网站一区二区三区| 精品国一区二区三区| 精品视频色一区| 欧美性生交片4| 色老汉一区二区三区| 国产精品一区在线| 成人av免费在线观看| 99麻豆久久久国产精品免费优播| 风间由美中文字幕在线看视频国产欧美 | 8v天堂国产在线一区二区| 色哦色哦哦色天天综合| 不卡一区二区三区四区| 成人在线综合网| 99久久精品国产一区| av不卡一区二区三区| 91美女视频网站| 欧美日韩午夜精品| 久久久久9999亚洲精品| 中文字幕永久在线不卡| 一区二区三区日本| 亚洲在线观看免费| 久久国产麻豆精品| thepron国产精品| 日韩一区二区三区视频| 国产精品污网站| 麻豆精品久久久| 国产不卡视频一区| 欧美色视频一区| 国产免费成人在线视频| 丝袜美腿亚洲综合| av亚洲产国偷v产偷v自拍| 日韩小视频在线观看专区| 久久伊人蜜桃av一区二区| 一区二区久久久久久| 成人综合婷婷国产精品久久免费| 制服.丝袜.亚洲.中文.综合| 国产精品免费视频网站| 蜜桃视频在线观看一区| 成人免费毛片嘿嘿连载视频| 欧美mv日韩mv亚洲| 一二三区精品视频| 91香蕉视频污在线| 国产精品乱码人人做人人爱| 国内外成人在线| 欧美精品一区二区三区蜜臀| 九九精品视频在线看| 日韩一区二区三区视频在线观看| 亚洲国产一区二区三区青草影视| 91色porny在线视频| 亚洲欧美日韩成人高清在线一区| www..com久久爱| 亚洲一区二区三区爽爽爽爽爽| 欧美猛男男办公室激情| 亚洲一区二区精品3399| 欧美一区二区视频观看视频| 亚洲成av人影院在线观看网| 欧美va亚洲va香蕉在线| 国产精品一区在线| 亚洲影院理伦片| 久久久国产一区二区三区四区小说 | 亚洲人123区| 欧美精品久久久久久久多人混战 | 亚洲欧洲av在线| eeuss鲁一区二区三区| 久久久精品tv| 欧美日韩在线三区| 成人黄色小视频在线观看| 一区在线播放视频| 精品国产麻豆免费人成网站| 国产精品亚洲一区二区三区妖精| 一区二区欧美在线观看| 国产亚洲欧洲997久久综合| 欧美一区二区三区四区在线观看 | 欧美精品九九99久久| 韩国女主播一区| 日韩电影在线免费看| 夜夜操天天操亚洲| www久久精品| 制服丝袜中文字幕亚洲| 日本福利一区二区| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 午夜视频在线观看一区二区| 一区二区三区中文字幕| 久久久久久久久久久电影| 欧美午夜寂寞影院| 色综合色综合色综合色综合色综合| 久久99在线观看| 极品尤物av久久免费看| 日本中文字幕一区二区视频| 日韩成人一级片| 免费久久精品视频| 麻豆精品新av中文字幕| 久久99精品国产.久久久久久| 蜜臂av日日欢夜夜爽一区| 天堂一区二区在线| 国内精品免费**视频| 高清beeg欧美| 一本一本大道香蕉久在线精品| 色94色欧美sute亚洲13| 一本到不卡精品视频在线观看| 欧美精品18+| 久久久精品免费免费| 亚洲人成7777| 国产在线播精品第三| 欧美日韩免费一区二区三区| 日本一区二区视频在线| 秋霞午夜av一区二区三区| 日韩一区二区三区免费看| 欧美老肥妇做.爰bbww| 国产欧美一区二区在线| 日韩精品欧美精品| av亚洲精华国产精华精华| 日韩一区二区免费高清| 一区二区免费在线| 91丨porny丨国产| 国产精品久久久久久久第一福利| 久久电影网站中文字幕| 3d动漫精品啪啪1区2区免费 | 亚洲视频在线观看一区| 激情综合五月天| 欧美精品一区男女天堂| 免费高清在线一区| 日韩午夜中文字幕| 九色porny丨国产精品| 国产丝袜在线精品| 成人一二三区视频| 亚洲人xxxx| 欧美日本一区二区三区| 国产一区二区电影| 自拍偷拍国产精品| 欧美视频一区二区三区在线观看| 亚洲一区中文在线| 91麻豆精品国产| 成人av资源下载| 婷婷夜色潮精品综合在线| 精品免费99久久| 老汉av免费一区二区三区| 欧美一区二区三区免费大片|