Ticket #43750: 43750.diff
File 43750.diff, 1.4 KB (added by , 6 years ago) |
---|
-
src/wp-admin/includes/plugin.php
31 31 * Network: Optional. Specify "Network: true" to require that a plugin is activated 32 32 * across all sites in an installation. This will prevent a plugin from being 33 33 * activated on a single site when Multisite is enabled. 34 * Privacy: Optional. How the plugin integrates with core privacy features, if at all. 35 * If nothing is specified, "unknown" will be assumed. 34 36 * * / # Remove the space to close comment 35 37 * 36 38 * Some users have issues with opening large files and manipulating the contents … … 63 65 * @type string $TextDomain Plugin textdomain. 64 66 * @type string $DomainPath Plugins relative directory path to .mo files. 65 67 * @type bool $Network Whether the plugin can only be activated network-wide. 68 * @type string $Privacy How the plugin integrates with core privacy features. 66 69 * } 67 70 */ 68 71 function get_plugin_data( $plugin_file, $markup = true, $translate = true ) { … … 77 80 'TextDomain' => 'Text Domain', 78 81 'DomainPath' => 'Domain Path', 79 82 'Network' => 'Network', 83 'Privacy' => 'Privacy', 80 84 // Site Wide Only is deprecated in favor of Network. 81 85 '_sitewide' => 'Site Wide Only', 82 86 );