ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
2026-09-20 19:51:33
Editing: Admin.php
Cancel
Save Changes
<?php /** * Admin orchestrator. * * @package GTM4WP * @author Thomas Geiger * @copyright 2013- Geiger Tamás e.v. (Thomas Geiger s.e.) * @license GNU General Public License, version 3 */ namespace GTM4WP\Admin; use GTM4WP\Module\Registry; use GTM4WP\Options\Options; defined( 'ABSPATH' ) || exit; /** * Boots all admin services. Only instantiated inside wp-admin for users * with the settings capability; nothing in this namespace ever loads on * frontend requests. */ final class Admin { /** * Constructor. * * @param Registry $registry The module registry. * @param Options $options The plugin options service. */ public function __construct( private Registry $registry, private Options $options ) { } /** * Registers all admin hooks. * * @return void */ public function boot(): void { $rest = new RestController( $this->registry ); ( new SettingsPage( $this->registry, $rest ) )->register_hooks(); ( new Notices( $this->options ) )->register_hooks(); ( new PluginRow() )->register_hooks(); } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete