Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

cli.php

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 3.93 KiB


01  <?php
02  /**
03  *
04  * This file is part of the phpBB Forum Software package.
05  *
06  * @copyright (c) phpBB Limited <https://www.phpbb.com>
07  * @license GNU General Public License, version 2 (GPL-2.0)
08  *
09  * For full copyright and license information, please see
10  * the docs/CREDITS.txt file.
11  *
12  */
13   
14  if (!defined('IN_PHPBB'))
15  {
16      exit;
17  }
18   
19  /**
20  * DO NOT CHANGE
21  */
22  if (empty($lang) || !is_array($lang))
23  {
24      $lang = array();
25  }
26   
27  // DEVELOPERS PLEASE NOTE
28  //
29  // Placeholders can now contain order information, e.g. instead of
30  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
31  // translators to re-order the output of data while ensuring it remains correct
32  //
33  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
34  // equally where a string contains only two placeholders which are used to wrap text
35  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
36   
37  $lang = array_merge($lang, array(
38      'CLI_CONFIG_CANNOT_CACHED'            => 'Set this option if the configuration option changes too frequently to be efficiently cached.',
39      'CLI_CONFIG_CURRENT'                => 'Current configuration value, use 0 and 1 to specify boolean values',
40      'CLI_CONFIG_DELETE_SUCCESS'            => 'Successfully deleted config %s.',
41      'CLI_CONFIG_NEW'                    => 'New configuration value, use 0 and 1 to specify boolean values',
42      'CLI_CONFIG_NOT_EXISTS'                => 'Config %s does not exist',
43      'CLI_CONFIG_OPTION_NAME'            => 'The configuration option’s name',
44      'CLI_CONFIG_PRINT_WITHOUT_NEWLINE'    => 'Set this option if the value should be printed without a new line at the end.',
45      'CLI_CONFIG_INCREMENT_BY'            => 'Amount to increment by',
46      'CLI_CONFIG_INCREMENT_SUCCESS'        => 'Successfully incremented config %s',
47      'CLI_CONFIG_SET_FAILURE'            => 'Could not set config %s',
48      'CLI_CONFIG_SET_SUCCESS'            => 'Successfully set config %s',
49   
50      'CLI_DESCRIPTION_CRON_LIST'                    => 'Prints a list of ready and unready cron jobs.',
51      'CLI_DESCRIPTION_CRON_RUN'                    => 'Runs all ready cron tasks.',
52      'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1'        => 'Name of the task to be run',
53      'CLI_DESCRIPTION_DB_MIGRATE'                => 'Updates the database by applying migrations.',
54      'CLI_DESCRIPTION_DELETE_CONFIG'                => 'Deletes a configuration option',
55      'CLI_DESCRIPTION_DISABLE_EXTENSION'            => 'Disables the specified extension.',
56      'CLI_DESCRIPTION_ENABLE_EXTENSION'            => 'Enables the specified extension.',
57      'CLI_DESCRIPTION_FIND_MIGRATIONS'            => 'Finds migrations that are not depended on.',
58      'CLI_DESCRIPTION_GET_CONFIG'                => 'Gets a configuration option’s value',
59      'CLI_DESCRIPTION_INCREMENT_CONFIG'            => 'Increments a configuration option’s value',
60      'CLI_DESCRIPTION_LIST_EXTENSIONS'            => 'Lists all extensions in the database and on the filesystem.',
61      'CLI_DESCRIPTION_OPTION_SAFE_MODE'            => 'Run in Safe Mode (without extensions).',
62      'CLI_DESCRIPTION_OPTION_SHELL'                => 'Launch the shell.',
63      'CLI_DESCRIPTION_PURGE_EXTENSION'            => 'Purges the specified extension.',
64      'CLI_DESCRIPTION_RECALCULATE_EMAIL_HASH'    => 'Recalculates the user_email_hash column of the users table.',
65      'CLI_DESCRIPTION_SET_ATOMIC_CONFIG'            => 'Sets a configuration option’s value only if the old matches the current value',
66      'CLI_DESCRIPTION_SET_CONFIG'                => 'Sets a configuration option’s value',
67   
68      'CLI_EXTENSION_DISABLE_FAILURE'        => 'Could not disable extension %s',
69      'CLI_EXTENSION_DISABLE_SUCCESS'        => 'Successfully disabled extension %s',
70      'CLI_EXTENSION_ENABLE_FAILURE'        => 'Could not enable extension %s',
71      'CLI_EXTENSION_ENABLE_SUCCESS'        => 'Successfully enabled extension %s',
72      'CLI_EXTENSION_NAME'                => 'Name of the extension',
73      'CLI_EXTENSION_PURGE_FAILURE'        => 'Could not purge extension %s',
74      'CLI_EXTENSION_PURGE_SUCCESS'        => 'Successfully purged extension %s',
75      'CLI_EXTENSION_NOT_FOUND'            => 'No extensions were found.',
76      'CLI_EXTENSIONS_AVAILABLE'            => 'Available',
77      'CLI_EXTENSIONS_DISABLED'            => 'Disabled',
78      'CLI_EXTENSIONS_ENABLED'            => 'Enabled',
79   
80      'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS'    => 'Successfully recalculated all email hashes.',
81  ));
82