index.php: | call_integration_hook('integrate_pre_log_stats', array(&$no_stat_actions)); |
sources/Session.php: | call_integration_hook('integrate_session_handlers'); |
sources/Load.php: | call_integration_hook('integrate_load_average', array($modSettings['load_average'])); |
sources/Load.php: | call_integration_hook('integrate_pre_load'); |
sources/Load.php: | if (count($integration_ids = call_integration_hook('integrate_verify_user')) > 0) |
sources/Load.php: | call_integration_hook('integrate_user_info'); |
sources/Load.php: | call_integration_hook('integrate_load_board_query', array(&$select_columns, &$select_tables)); |
sources/Load.php: | call_integration_hook('integrate_loaded_board', array(&$board_info, &$row)); |
sources/Load.php: | call_integration_hook('integrate_load_member_data', array(&$select_columns, &$select_tables, $set)); |
sources/Load.php: | call_integration_hook('integrate_add_member_data', array($new_loaded_ids, $set)); |
sources/Load.php: | call_integration_hook('integrate_member_context', array($user, $display_custom_fields)); |
sources/Load.php: | call_integration_hook('integrate_simple_actions', array(&$simpleActions)); |
sources/Load.php: | call_integration_hook('integrate_init_theme', array($id_theme, &$settings)); |
sources/Load.php: | call_integration_hook('integrate_load_theme'); |
sources/SiteDispatcher.class.php: | call_integration_hook('integrate_action_frontpage', array(&$default_action)); |
sources/SiteDispatcher.class.php: | call_integration_hook('integrate_actions', array(&$actionArray, &$adminActions)); |
sources/SiteDispatcher.class.php: | call_integration_hook('integrate_action_' . $hook . '_before', array($this->_function_name)); |
sources/SiteDispatcher.class.php: | call_integration_hook('integrate_action_boardindex_before'); |
sources/SiteDispatcher.class.php: | call_integration_hook('integrate_action_boardindex_after'); |
sources/SiteDispatcher.class.php: | call_integration_hook('integrate_action_' . $hook . '_after', array($this->_function_name)); |
sources/controllers/Stats.controller.php: | call_integration_hook('integrate_forum_stats'); |
sources/controllers/ProfileInfo.controller.php: | call_integration_hook('integrate_profile_summary', array($memID)); |
sources/controllers/ProfileInfo.controller.php: | call_integration_hook('integrate_profile_stats', array($memID)); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_topic_query', array(&$topic_selects, &$topic_tables, &$topic_parameters)); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_display_topic', array($topicinfo)); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_poll_buttons'); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_display_message_list', array(&$messages, &$posters)); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_message_query', array(&$msg_selects, &$msg_tables, &$msg_parameters)); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_display_buttons'); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_mod_buttons'); |
sources/controllers/Display.controller.php: | call_integration_hook('integrate_prepare_display_context', array(&$output, &$message)); |
sources/controllers/Register.controller.php: | call_integration_hook('integrate_activate', array($regOptions['username'])); |
sources/controllers/Register.controller.php: | call_integration_hook('integrate_activate', array($row['member_name'])); |
sources/controllers/Reminder.controller.php: | call_integration_hook('integrate_reset_pass', array($member['member_name'], $member['member_name'], $_POST['passwrd1'])); |
sources/controllers/Reminder.controller.php: | call_integration_hook('integrate_reset_pass', array($member['member_name'], $member['member_name'], $_POST['passwrd1'])); |
sources/controllers/Emailpost.controller.php: | call_integration_hook('integrate_mailist_checks_before', array($email_message, $pbe)); |
sources/controllers/Emailpost.controller.php: | call_integration_hook('integrate_mailist_checks_before', array($email_message, $pbe)); |
sources/controllers/Poll.controller.php: | call_integration_hook('integrate_poll_vote', array(&$row['id_poll'], &$pollOptions)); |
sources/controllers/Poll.controller.php: | call_integration_hook('integrate_poll_add_edit', array($bcinfo['id_poll'], $isEdit)); |
sources/controllers/Poll.controller.php: | call_integration_hook('integrate_poll_remove', array($pollID)); |
sources/controllers/ProfileAccount.controller.php: | call_integration_hook('integrate_activate', array($user_profile[$memID]['member_name'])); |
sources/controllers/Mentions.controller.php: | call_integration_hook('integrate_add_mention', array(&$this->_known_mentions)); |
sources/controllers/BoardIndex.controller.php: | call_integration_hook('integrate_mark_read_button'); |
sources/controllers/Calendar.controller.php: | call_integration_hook('integrate_calendar_buttons'); |
sources/controllers/Profile.controller.php: | $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($cur_profile['member_name'], $_POST['oldpasswrd'], false)), true); |
sources/controllers/Profile.controller.php: | call_integration_hook('integrate_profile_save', array(&$profile_vars, &$post_errors, $memID)); |
sources/controllers/Profile.controller.php: | call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
sources/controllers/Help.controller.php: | call_integration_hook('integrate_quickhelp'); |
sources/controllers/Auth.controller.php: | if (in_array('retry', call_integration_hook('integrate_validate_login', array($_POST['user'], isset($_POST['hash_passwrd']) && strlen($_POST['hash_passwrd']) == 40 ? $_POST['hash_passwrd'] : null, $modSettings['cookieTime'])), true)) |
sources/controllers/Auth.controller.php: | call_integration_hook('integrate_logout', array($user_settings['member_name'])); |
sources/controllers/Auth.controller.php: | call_integration_hook('integrate_validateSession', array(&$types)); |
sources/controllers/Auth.controller.php: | call_integration_hook('integrate_other_passwords', array(&$other_passwords)); |
sources/controllers/Auth.controller.php: | call_integration_hook('integrate_login', array($user_settings['member_name'], isset($_POST['hash_passwrd']) && strlen($_POST['hash_passwrd']) == 64 ? $_POST['hash_passwrd'] : null, $modSettings['cookieTime'])); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search'); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_sort_columns', array(&$sort_columns)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_params', array(&$search_params)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_blacklisted_words', array(&$blacklisted_words)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_errors'); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_subject_only_search_query', array(&$subject_query, &$subject_query_params)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_subject_search_query', array(&$subject_query)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_main_search_query', array(&$main_query)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_message_list', array(&$msg_list, &$posters)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_quick_mod_actions_search'); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_message_context', array($counter, &$output)); |
sources/controllers/Search.controller.php: | call_integration_hook('integrate_search_weights', array(&$this->_weight_factors)); |
sources/controllers/Members.controller.php: | call_integration_hook('integrate_add_buddies', array($user_info['id'], &$user)); |
sources/controllers/Members.controller.php: | call_integration_hook('integrate_remove_buddy', array($user_info['id'])); |
sources/controllers/MessageIndex.controller.php: | call_integration_hook('integrate_messageindex_topics', array(&$sort_column, &$indexOptions)); |
sources/controllers/MessageIndex.controller.php: | call_integration_hook('integrate_messageindex_listing', array($topics_info)); |
sources/controllers/MessageIndex.controller.php: | call_integration_hook('integrate_quick_mod_actions'); |
sources/controllers/MessageIndex.controller.php: | call_integration_hook('integrate_messageindex_buttons'); |
sources/controllers/Memberlist.controller.php: | call_integration_hook('integrate_memberlist_buttons'); |
sources/controllers/Suggest.controller.php: | call_integration_hook('integrate_autosuggest', array(&$searchTypes)); |
sources/controllers/ProfileOptions.controller.php: | call_integration_hook('integrate_remove_buddy', array($memID)); |
sources/controllers/ProfileOptions.controller.php: | call_integration_hook('integrate_add_buddies', array($memID, &$new_buddies)); |
sources/controllers/ProfileOptions.controller.php: | call_integration_hook('integrate_view_buddies', array($memID)); |
sources/controllers/ProfileOptions.controller.php: | call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd1'])); |
sources/controllers/Recent.controller.php: | call_integration_hook('integrate_recent_message_list', array($messages, &$permissions)); |
sources/controllers/Recent.controller.php: | call_integration_hook('integrate_recent_buttons'); |
sources/controllers/Recent.controller.php: | call_integration_hook('integrate_unread_list'); |
sources/controllers/PersonalMessage.controller.php: | call_integration_hook('integrate_conversation_buttons'); |
sources/controllers/News.controller.php: | call_integration_hook('integrate_xmlfeeds', array(&$subActions)); |
sources/controllers/News.controller.php: | call_integration_hook('integrate_fix_url', array(&$val)); |
sources/Security.php: | call_integration_hook('integrate_validateSession', array(&$types)); |
sources/Security.php: | $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($user_info['username'], $_POST[$type . '_hash_pass'], true)), true); |
sources/Security.php: | $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($user_info['username'], $_POST[$type . '_pass'], false)), true); |
sources/Security.php: | call_integration_hook('integrate_post_ban_permissions', array(&$denied_permissions)); |
sources/Security.php: | call_integration_hook('integrate_warn_permissions', array(&$permission_change)); |
sources/Security.php: | call_integration_hook('integrate_spam_protection', array(&$timeOverrides)); |
sources/Subs.php: | call_integration_hook('integrate_change_member_data', array($member_names, &$var, &$data[$var], &$knownInts, &$knownFloats)); |
sources/Subs.php: | call_integration_hook('integrate_pre_parsebbc', array(&$message, &$smileys, &$cache_id, &$parse_tags)); |
sources/Subs.php: | call_integration_hook('integrate_bbc_codes', array(&$codes, &$no_autolink_tags, &$itemcodes)); |
sources/Subs.php: | call_integration_hook('integrate_post_parsebbc', array(&$message, &$smileys, &$cache_id, &$parse_tags)); |
sources/Subs.php: | call_integration_hook('integrate_redirect', array(&$setLocation, &$refresh)); |
sources/Subs.php: | call_integration_hook('integrate_exit', array($do_footer)); |
sources/Subs.php: | call_integration_hook('pre_javascript_output'); |
sources/Subs.php: | call_integration_hook('pre_css_output'); |
sources/Subs.php: | call_integration_hook('integrate_menu_buttons', array(&$buttons, &$menu_count)); |
sources/Subs.php: | call_integration_hook('integrate_current_action', array(&$current_action)); |
sources/Subs.php: | call_integration_hook('integrate_basic_url_replacement', array(&$find, &$replace)); |
sources/ErrorContext.class.php: | call_integration_hook('integrate_' . $this->_name . '_errors', array(&$this->_errors, &$this->_severity_levels)); |
sources/Logging.php: | call_integration_hook('integrate_log_types', array(&$log_types)); |
sources/Errors.php: | call_integration_hook('integrate_error_types', array(&$other_error_types)); |
sources/Errors.php: | call_integration_hook('integrate_output_error', array($message, $error_type, $error_level, $file, $line)); |