您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

33 行
816B

  1. #!/usr/bin/php
  2. <?php
  3. chdir(dirname(__FILE__));
  4. require_once 'common.php';
  5. assertCli();
  6. echo "Please do not run this script. It is here for historical purposes only.";
  7. exit;
  8. /**
  9. * @file
  10. * Removes ConfigSchema function calls from source files.
  11. */
  12. chdir(dirname(__FILE__) . '/../library/');
  13. $FS = new FSTools();
  14. $files = $FS->globr('.', '*.php');
  15. foreach ($files as $file) {
  16. if (substr_count(basename($file), '.') > 1) continue;
  17. $old_code = file_get_contents($file);
  18. $new_code = preg_replace("#^HTMLPurifier_ConfigSchema::.+?\);[\n\r]*#ms", '', $old_code);
  19. if ($old_code !== $new_code) {
  20. file_put_contents($file, $new_code);
  21. }
  22. if (preg_match('#^\s+HTMLPurifier_ConfigSchema::#m', $new_code)) {
  23. echo "Indented ConfigSchema call in $file\n";
  24. }
  25. }
  26. // vim: et sw=4 sts=4