HEX
Server: Apache
System: Linux 4485441ca2e2 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 11:03:07 UTC 2025 aarch64
User: (1000)
PHP: 8.2.24
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-members/wp-members-tos.php
<?php
/**
 * WP-Members TOS Page
 *
 * Generates teh Terms of Service pop-up.
 * 
 * This file is part of the WP-Members plugin by Chad Butler
 * You can find out more about this plugin at http://rocketgeek.com
 * Copyright (c) 2006-2016  Chad Butler
 * WP-Members(tm) is a trademark of butlerblog.com
 *
 * @package WP-Members
 * @author Chad Butler
 * @copyright 2006-2016
 */

define ( 'WP_USE_THEMES', false );
require( '../../../wp-blog-header.php' );
?>

<html>
<head>
	<title><?php _e( 'Terms of Service', 'wp-members' ); ?> | <?php bloginfo( 'name' ); ?></title>
</head>

<body>

<?php

$wpmem_tos = get_option( 'wpmembers_tos' );

echo stripslashes( $wpmem_tos );

print ( '<br /><br />' );
printf( __('%sclose%s', 'wp-members'), '[<a href="javascript:self.close()">', '</a>]' );
print ( '&nbsp;&nbsp;' );
printf( __('%sprint%s', 'wp-members'), '[<a href="javascript:window.print()">', '</a>]' );

?>

</body>
</html>