2018-04-24 16:51:39 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by PhpStorm.
|
|
|
|
* User: Uwe Tews
|
|
|
|
* Date: 25.10.2015
|
|
|
|
* Time: 23:58
|
|
|
|
*/
|
|
|
|
$sysplugins = array();
|
2018-08-19 02:35:46 +02:00
|
|
|
$iterator = new DirectoryIterator(dirname(__FILE__) . '/../libs/sysplugins');
|
2018-04-24 16:51:39 +02:00
|
|
|
foreach ($iterator as $file) {
|
|
|
|
if (!$file->isDot() && 'php' == $file->getExtension()) {
|
|
|
|
$filename = $file->getBasename();
|
|
|
|
$sysplugins[ $filename ] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$plugins = array();
|
2018-08-19 02:35:46 +02:00
|
|
|
$iterator = new DirectoryIterator(dirname(__FILE__) . '/../libs/plugins');
|
2018-04-24 16:51:39 +02:00
|
|
|
foreach ($iterator as $file) {
|
|
|
|
if (!$file->isDot() && 'php' == $file->getExtension()) {
|
|
|
|
$filename = $file->getBasename();
|
|
|
|
$plugins[ $filename ] = true;
|
|
|
|
}
|
|
|
|
}
|
2018-08-19 02:35:46 +02:00
|
|
|
$code = file_get_contents(dirname(__FILE__) . '/../libs/sysplugins/smarty_internal_testinstall.php');
|
2018-04-24 16:51:39 +02:00
|
|
|
$expectedPlugins = '$expectedPlugins = ' . var_export($plugins, true);
|
|
|
|
$code = preg_replace('#\$expectedPlugins =[^;]+#', $expectedPlugins, $code);
|
|
|
|
$expectedSysplugins = '$expectedSysplugins = ' . var_export($sysplugins, true);
|
|
|
|
$code = preg_replace('#\$expectedSysplugins =[^;]+#', $expectedSysplugins, $code);
|
2018-08-19 02:35:46 +02:00
|
|
|
file_put_contents(dirname(__FILE__) . '/../libs/sysplugins/smarty_internal_testinstall.php', $code);
|