SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > content-control > classes > Controllers


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/content-control/classes/Controllers

NameTypeSizeLast ModifiedActions
Admin Directory - -
Compatibility Directory - -
Frontend Directory - -
Admin.php File 1041 bytes September 18 2023 05:47:10.
Assets.php File 6560 bytes March 18 2024 03:33:26.
BlockEditor.php File 870 bytes September 21 2023 14:13:04.
Compatibility.php File 1150 bytes May 23 2024 08:59:16.
Frontend.php File 2677 bytes December 08 2023 15:26:30.
PostTypes.php File 8574 bytes September 24 2023 11:29:44.
RestAPI.php File 3984 bytes May 09 2025 02:30:24.
Shortcodes.php File 3563 bytes May 09 2025 10:15:16.
TrustedLogin.php File 3446 bytes March 15 2025 12:03:42.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/content-control/classes/Controllers/Admin.php

<?php
/**
 * Admin controller.
 *
 * @copyright (c) 2022, Code Atlantic LLC.
 *
 * @package ContentControl
 */

namespace ContentControl\Controllers;

use ContentControl\Base\Controller;
use ContentControl\Controllers\Admin\Reviews;
use ContentControl\Controllers\Admin\SettingsPage;
use ContentControl\Controllers\Admin\Upgrades;
use ContentControl\Controllers\Admin\UserExperience;
use ContentControl\Controllers\Admin\WidgetEditor;

defined( 'ABSPATH' ) || exit;

/**
 * Admin controller  class.
 *
 * @package ContentControl
 */
class Admin extends Controller {

	/**
	 * Initialize admin controller.
	 *
	 * @return void
	 */
	public function init() {
		$this->container->register_controllers( [
			'Admin\Reviews'        => new Reviews( $this->container ),
			'Admin\Settings'       => new SettingsPage( $this->container ),
			'Admin\Upgrades'       => new Upgrades( $this->container ),
			'Admin\UserExperience' => new UserExperience( $this->container ),
			'Admin\WidgetEditor'   => new WidgetEditor( $this->container ),
		] );
	}
}

SILENT KILLER Tool