| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * Information class for the SiteActivePlugins feature. |
|---|
| 4 | * |
|---|
| 5 | * @package multisyde |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | declare(strict_types=1); |
|---|
| 9 | |
|---|
| 10 | namespace Syde\MultiSyde\Modules\SiteActiveTheme; |
|---|
| 11 | |
|---|
| 12 | use Syde\MultiSyde\Summary; |
|---|
| 13 | use Syde\MultiSyde\ShareableInformation; |
|---|
| 14 | |
|---|
| 15 | /** |
|---|
| 16 | * Provides information about the SiteActiveThemes feature. |
|---|
| 17 | */ |
|---|
| 18 | class About implements ShareableInformation { |
|---|
| 19 | |
|---|
| 20 | /** |
|---|
| 21 | * Get the feature information. |
|---|
| 22 | * |
|---|
| 23 | * @return Summary |
|---|
| 24 | */ |
|---|
| 25 | public static function get(): Summary { |
|---|
| 26 | return new Summary( |
|---|
| 27 | __( 'Site Active Theme', 'multisyde' ), |
|---|
| 28 | __( 'Displays the active theme (and its version) for each site in the Network Admin > Sites dashboard. This makes it easy for network administrators to quickly audit which themes are used across the network.', 'multisyde' ), |
|---|
| 29 | array( |
|---|
| 30 | 'https://core.trac.wordpress.org/ticket/56458', |
|---|
| 31 | ) |
|---|
| 32 | ); |
|---|
| 33 | } |
|---|
| 34 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.