golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/notificationx-pro/includes/Admin
⬆️ Go Up
Upload
File/Folder
Size
Actions
Admin.php
793 B
Del
OK
Cron.php
4.46 KB
Del
OK
Entries.php
432 B
Del
OK
Reports
-
Del
OK
Settings.php
5.43 KB
Del
OK
XSS.php
3.39 KB
Del
OK
query-content
-
Del
OK
Edit: Admin.php
<?php /** * Admin Class File. * * @package NotificationX\Admin */ namespace NotificationXPro\Admin; use NotificationX\Admin\Admin as AdminFree; /** * Admin Class, this class is responsible for all Admin Actions */ final class Admin extends AdminFree { /** * Initially Invoked * when its initialized. */ public function __construct(){ parent::__construct(); XSS::get_instance(); } /** * This method is reponsible for Admin Menu of * NotificationX * * @return void */ public function init(){ parent::init(); } /** * This method is reponsible for Admin Menu of * NotificationX * * @return void */ public function admin_init(){ parent::admin_init(); } }
Save