12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /**
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2013 Simple Machines and individual contributors
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- if (!defined('SMF'))
- die('No direct access...');
- /**
- * Fetches the list of preferences (or a single/subset of preferences) for
- * notifications for one or more users.
- *
- * @param mixed $members A user id or an array of (integer) user ids to load preferences for
- * @param mixed $prefs An empty string to load all preferences, or a string (or array) of preference name(s) to load
- * @param mixed $process_default Whether to apply the default values to the members' values or not.
- * @return array An array of user ids => array (pref name -> value), with user id 0 representing the defaults
- */
- function getNotifyPrefs($members, $prefs = '', $process_default = false)
- {
- global $smcFunc;
- // We want this as an array whether it is or not.
- $members = is_array($members) ? $members : (array) $members;
- if (!empty($prefs))
- $prefs = is_array($prefs) ? $prefs : (array) $prefs;
- $result = array();
- // We want to now load the default, which is stored with a member id of 0.
- $members[] = 0;
- $request = $smcFunc['db_query']('', '
- SELECT id_member, alert_pref, alert_value
- FROM {db_prefix}user_alerts_prefs
- WHERE id_member IN ({array_int:members})' . (!empty($prefs) ? '
- AND alert_pref IN ({array_string:prefs})' : ''),
- array(
- 'members' => $members,
- 'prefs' => $prefs,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- $result[$row['id_member']][$row['alert_pref']] = $row['alert_value'];
- }
- // We may want to keep the default values separate from a given user's. Or we might not.
- if ($process_default && isset($result[0]))
- {
- foreach ($members as $member)
- if (!isset($result[$member]))
- $result[$member] = $result[0];
- unset ($result[0]);
- }
- return $result;
- }
- /**
- * Sets the list of preferences for a single user.
- *
- * @param int $memID The user whose preferences you are setting
- * @param array $prefs An array key of pref -> value
- */
- function setNotifyPrefs($memID, $prefs = array())
- {
- global $smcFunc;
- if (empty($prefs) || empty($memID))
- return;
- $update_rows = array();
- foreach ($prefs as $k => $v)
- $update_rows[] = array($memID, $k, $v);
- $smcFunc['db_insert']('replace',
- '{db_prefix}user_alerts_prefs',
- array('id_member' => 'int', 'alert_pref' => 'string', 'alert_value' => 'int'),
- $update_rows,
- array('id_member', 'alert_pref')
- );
- }
- ?>
|