# s2member/110812/includes/classes/profile.inc.php

s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls &amp; Member Access Subscriptions, version 110812. 49 lines.

- Page: https://pluginprobe.com/plugins/s2member/110812/code/includes/classes/profile.inc.php
- Raw: https://pluginprobe.com/plugins/s2member/110812/raw/includes/classes/profile.inc.php
- Modified: 2011-08-12T05:07:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/s2member/110812/code/includes/classes/profile.inc.php#L10-L20`.

```php
<?php
/**
* s2Member Stand-Alone Profile page.
*
* Copyright: © 2009-2011
* {@link http://www.websharks-inc.com/ WebSharks, Inc.}
* ( coded in the USA )
*
* Released under the terms of the GNU General Public License.
* You should have received a copy of the GNU General Public License,
* along with this software. In the main directory, see: /licensing/
* If not, see: {@link http://www.gnu.org/licenses/}.
*
* @package s2Member\Profiles
* @since 3.5
*/
if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
	exit("Do not access this file directly.");
/**/
if (!class_exists ("c_ws_plugin__s2member_profile"))
	{
		/**
		* s2Member Stand-Alone Profile page.
		*
		* @package s2Member\Profiles
		* @since 3.5
		*/
		class c_ws_plugin__s2member_profile
			{
				/**
				* Displays a Stand-Alone Profile Modification Form.
				*
				* @package s2Member\Profiles
				* @since 3.5
				*
				* @attaches-to: ``add_action("init");``
				*
				* @return null|inner Return-value of inner routine.
				*/
				public static function profile ()
					{
						if (!empty ($_GET["s2member_profile"])) /* Call inner routine? */
							{
								return c_ws_plugin__s2member_profile_in::profile ();
							}
					}
			}
	}
?>
```
