| 1 |
<?php |
| 2 |
/** |
| 3 |
* WP-Members TOS Page |
| 4 |
* |
| 5 |
* Generates teh Terms of Service pop-up. |
| 6 |
* |
| 7 |
* This file is part of the WP-Members plugin by Chad Butler |
| 8 |
* You can find out more about this plugin at https://rocketgeek.com |
| 9 |
* Copyright (c) 2006-2026 Chad Butler |
| 10 |
* WP-Members(tm) is a trademark of butlerblog.com |
| 11 |
* |
| 12 |
* @package WP-Members |
| 13 |
* @author Chad Butler |
| 14 |
* @copyright 2006-2026 |
| 15 |
*/ |
| 16 |
?> |
| 17 |
|
| 18 |
<html> |
| 19 |
<head> |
| 20 |
<title><?php wpmem_get_text( 'tos_title', true ); ?> | <?php bloginfo( 'name' ); ?></title> |
| 21 |
</head> |
| 22 |
|
| 23 |
<body> |
| 24 |
|
| 25 |
<?php |
| 26 |
|
| 27 |
$wpmem_tos = get_option( 'wpmembers_tos' ); |
| 28 |
|
| 29 |
echo stripslashes( $wpmem_tos ); |
| 30 |
|
| 31 |
print ( '<br /><br />' ); |
| 32 |
printf( wpmem_get_text( 'tos_close' ), '[<a href="javascript:self.close()">', '</a>]' ); |
| 33 |
print ( ' ' ); |
| 34 |
printf( wpmem_get_text( 'tos_print' ), '[<a href="javascript:window.print()">', '</a>]' ); |
| 35 |
|
| 36 |
?> |
| 37 |
|
| 38 |
</body> |
| 39 |
</html> |