Plugin Directory

source: multisyde/trunk/modules/SiteActiveTheme/About.php

Last change on this file was 3340116, checked in by realloc, 8 months ago

Update to version 1.1.0 from GitHub

File size: 836 bytes
Line 
1<?php
2/**
3 * Information class for the SiteActivePlugins feature.
4 *
5 * @package multisyde
6 */
7
8declare(strict_types=1);
9
10namespace Syde\MultiSyde\Modules\SiteActiveTheme;
11
12use Syde\MultiSyde\Summary;
13use Syde\MultiSyde\ShareableInformation;
14
15/**
16 * Provides information about the SiteActiveThemes feature.
17 */
18class 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.