修改支持多平台同时启用策略
This commit is contained in:
parent
41296429cb
commit
457406d30b
@ -1,5 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
//init
|
//init
|
||||||
|
$Pre_Type = $_SERVER['QUERY_STRING'];
|
||||||
require_once('config.php');
|
require_once('config.php');
|
||||||
require_once('functions.php');
|
require_once('functions.php');
|
||||||
$plugins = array();
|
$plugins = array();
|
39
VAR_BOT.php
Normal file
39
VAR_BOT.php
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
//init
|
||||||
|
$Pre_Type = substr(substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/')+1), 0, -4);
|
||||||
|
require_once('config.php');
|
||||||
|
require_once('functions.php');
|
||||||
|
$plugins = array();
|
||||||
|
|
||||||
|
require(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'Base.php');
|
||||||
|
require_once(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'init.php');
|
||||||
|
|
||||||
|
//load plugins
|
||||||
|
|
||||||
|
$load_plugins = glob(PATH.'plugins'.DIRECTORY_SEPARATOR.'*.php');
|
||||||
|
foreach ($load_plugins as $key => $value) {
|
||||||
|
if ($value == PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php') {
|
||||||
|
unset($load_plugins[$key]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
foreach ($TAGs as $TAG) {
|
||||||
|
foreach ($load_plugins as $value) {
|
||||||
|
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
||||||
|
if (preg_match("/^(".preg_quote($TAG, '/').$plugin_name."|".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.") (.*)$/", $text, $matches)) {
|
||||||
|
$plugin_text = $matches[2];
|
||||||
|
$plugin_sendto = $from;
|
||||||
|
require_once $value;
|
||||||
|
break;
|
||||||
|
}elseif (preg_match("/^(".preg_quote($TAG, '/').$plugin_name.")|(".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.")$/", $text)) {
|
||||||
|
$plugin_text = $matches[2];
|
||||||
|
$plugin_sendto = $from;
|
||||||
|
require_once $value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
require_once PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
define('TYPE', $_SERVER['QUERY_STRING']);
|
define('TYPE', $Pre_Type);
|
||||||
define('PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
|
define('PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
|
||||||
define('OWNER_NAME', 'Denny Dai');
|
define('OWNER_NAME', 'Denny Dai');
|
||||||
define('BOT_NAME', 'D_bot');
|
define('BOT_NAME', 'D_bot');
|
||||||
|
Loading…
Reference in New Issue
Block a user