PluginProbe
WP-Members Membership Plugin / trunk
WP-Members Membership Plugin vtrunk
trunk 3.3.9 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.4.2 3.4.5 3.4.6 3.4.7 3.4.8 3.4.9 3.4.9.1 3.4.9.2 3.4.9.3 3.4.9.4 3.4.9.5 3.4.9.6 3.4.9.7 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 All 34 releases
wp-members / templates / tos.php

tos.php in WP-Members Membership Plugin trunk, at templates/tos.php

39 lines 884 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 ( '&nbsp;&nbsp;' );
34 printf( wpmem_get_text( 'tos_print' ), '[<a href="javascript:window.print()">', '</a>]' );
35
36 ?>
37
38 </body>
39 </html>