8889841chome/clixcotz/cbo.clix.co.tz/wp-content/plugins/publishpress-authors/src/core/Factory.php000064400000002131150437227040025715 0ustar00 * @copyright Copyright (C) 2018 PublishPress. All rights reserved. * @license GPLv2 or later * @since 1.0.0 */ namespace MultipleAuthors; use MultipleAuthors\Classes\Legacy\LegacyPlugin; defined('ABSPATH') or die('No direct script access allowed.'); if (!defined('MULTIPLE_AUTHORS_LOADED')) { require_once __DIR__ . '/../../includes.php'; } /** * Class Factory */ abstract class Factory { /** * @var Container */ protected static $container = null; /** * @return LegacyPlugin */ public static function getLegacyPlugin() { $container = self::get_container(); return $container['legacy_plugin']; } /** * @return Container */ public static function get_container() { if (static::$container === null) { $services = new Services(); static::$container = new Container(); static::$container->register($services); } return static::$container; } }