avatar-privacy/includes/avatar-privacy/components/class-integrations.php

81 lines
2.0 KiB
PHP

<?php
/**
* This file is part of Avatar Privacy.
*
* Copyright 2018-2022 Peter Putzer.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* ***
*
* @package mundschenk-at/avatar-privacy
* @license http://www.gnu.org/licenses/gpl-2.0.html
*/
namespace Avatar_Privacy\Components;
use Avatar_Privacy\Component;
use Avatar_Privacy\Integrations\Plugin_Integration; // phpcs:ignore ImportDetection.Imports.RequireImports.Import -- necessary for type hints.
/**
* A registry for plugin integrations.
*
* @since 1.1.0
*
* @author Peter Putzer <github@mundschenk.at>
*/
class Integrations implements Component {
/**
* An array of plugin integration instances.
*
* @var Plugin_Integration[]
*/
private $integrations = [];
/**
* Creates a new instance.
*
* @since 2.2.0 Parameter $core removed.
*
* @param Plugin_Integration[] $integrations An array of plugin integration instances.
*/
public function __construct( array $integrations ) {
$this->integrations = $integrations;
}
/**
* Activate all applicable plugin integrations.
*
* @return void
*/
public function activate() {
foreach ( $this->integrations as $integration ) {
if ( $integration->check() ) {
$integration->run();
}
}
}
/**
* Start up enabled integrations.
*
* @return void
*/
public function run() {
\add_action( 'plugins_loaded', [ $this, 'activate' ], 1 );
}
}