hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/home.obu.edu/wp-content/plugins/automessage/ |
<?php
/*
Plugin Name: Automessage
Plugin URI: http://premium.wpmudev.org/project/automatic-follow-up-emails-for-new-users
Description: This plugin allows emails to be scheduled and sent to new users.
Author: WPMU DEV
Version: 2.4.5
Author URI: http://caffeinatedb.com
WDP ID: 81
*/
/*
Copyright Incsub (http://incsub.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License (Version 2 - GPLv2) as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
global $automessage_basename;
$automessage_basename = plugin_basename(__FILE__);
// Load the libraries
require_once('includes/config.php');
require_once('includes/functions.php');
require_once('classes/class.automessage.php');
require_once('classes/class.user.php');
// Set up our location
set_automessage_url(__FILE__);
set_automessage_dir(__FILE__);
global $wpmudev_notices;
$wpmudev_notices[] = array( 'id'=> 81,'name'=> 'Automessage', 'screens' => array( 'toplevel_page_automessage', 'automessage_page_automessage_blogadmin', 'automessage_page_automessage_useradmin' ) );
include_once('external/dash-notice/wpmudev-dash-notification.php');
// Instantiate the class
$automsg = new automessage();
?>