commandLine.inc 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. /**
  3. * Backwards-compatibility wrapper for old-style maintenance scripts.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. * @ingroup Maintenance
  22. */
  23. require_once __DIR__ . '/Maintenance.php';
  24. // phpcs:ignore MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
  25. global $optionsWithArgs, $optionsWithoutArgs, $allowUnregisteredOptions;
  26. if ( !isset( $optionsWithArgs ) ) {
  27. $optionsWithArgs = [];
  28. }
  29. if ( !isset( $optionsWithoutArgs ) ) {
  30. $optionsWithoutArgs = [];
  31. }
  32. if ( !isset( $allowUnregisteredOptions ) ) {
  33. $allowUnregisteredOptions = false;
  34. }
  35. class CommandLineInc extends Maintenance {
  36. public function __construct() {
  37. // phpcs:ignore MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
  38. global $optionsWithArgs, $optionsWithoutArgs, $allowUnregisteredOptions;
  39. parent::__construct();
  40. foreach ( $optionsWithArgs as $name ) {
  41. $this->addOption( $name, '', false, true );
  42. }
  43. foreach ( $optionsWithoutArgs as $name ) {
  44. $this->addOption( $name, '', false, false );
  45. }
  46. $this->setAllowUnregisteredOptions( $allowUnregisteredOptions );
  47. }
  48. /**
  49. * No help, it would just be misleading since it misses custom options
  50. * @param bool $force
  51. */
  52. protected function maybeHelp( $force = false ) {
  53. if ( !$force ) {
  54. return;
  55. }
  56. parent::maybeHelp( true );
  57. }
  58. public function execute() {
  59. // phpcs:ignore MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
  60. global $args, $options;
  61. $args = $this->mArgs;
  62. $options = $this->mOptions;
  63. }
  64. }
  65. $maintClass = CommandLineInc::class;
  66. require RUN_MAINTENANCE_IF_MAIN;