Making WordPress.org


Ignore:
Timestamp:
03/30/2022 08:04:35 PM (3 years ago)
Author:
ocean90
Message:

Translate: Announce new strings for default themes, Gutenberg, and patterns in #polyglots Slack channel.

Fixes #6213.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-slack-integrations/wporg-gp-slack-integrations.php

    r2275 r11723  
    1010
    1111require_once __DIR__ . '/integrations/log-warnings.php';
     12require_once __DIR__ . '/integrations/log-imported-originals.php';
    1213
    1314class WPorg_GP_Slack_Integrations {
     
    2021    public $log_warnings;
    2122
     23    /**
     24     * Holds the logger for imported originals instance.
     25     *
     26     * @var WPorg_GP_Slack_Log_Imported_Originals
     27     */
     28    public $log_imported_originals;
     29
    2230    public function __construct() {
    2331        add_action( 'gp_init', array( $this, 'init_integrations' ) );
     
    2836     */
    2937    public function init_integrations() {
    30         $this->log_warnings = new WPorg_GP_Slack_Log_Warnings();
     38        $this->log_warnings           = new WPorg_GP_Slack_Log_Warnings();
     39        $this->log_imported_originals = new WPorg_GP_Slack_Log_Imported_Originals();
    3140    }
    3241}
Note: See TracChangeset for help on using the changeset viewer.