# s2member/260913/src/includes/funcs.inc.php

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

- Page: https://pluginprobe.com/plugins/s2member/260913/code/src/includes/funcs.inc.php
- Raw: https://pluginprobe.com/plugins/s2member/260913/raw/src/includes/funcs.inc.php
- Modified: 2016-11-29T22:22:10+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/260913/code/src/includes/funcs.inc.php#L10-L20`.

```php
<?php
// @codingStandardsIgnoreFile
/**
 * Loads functions created by the s2Member plugin.
 *
 * Copyright: © 2009-2011
 * {@link http://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
 * @since 3.0
 */
if(!defined('WPINC')) // MUST have WordPress.
	exit ('Do not access this file directly.');
/*
Include all of the functions that came with this plugin.
*/
if(is_dir($ws_plugin__s2member_temp_dir = dirname(__FILE__).'/functions'))
	foreach(scandir($ws_plugin__s2member_temp_dir) as $ws_plugin__s2member_temp_s)
		if(preg_match('/\.php$/', $ws_plugin__s2member_temp_s) && $ws_plugin__s2member_temp_s !== 'index.php')
			include_once $ws_plugin__s2member_temp_dir.'/'.$ws_plugin__s2member_temp_s;
unset($ws_plugin__s2member_temp_dir, $ws_plugin__s2member_temp_s);

```
