Сегодня: 21:11:2024 Доброго вам вечера!

I live ExBB and CMS Limbo!  I live ExBB and CMS Limbo!
Логин :
Пароль :
Регистрация?  Забыли пароль? 
 


 Страниц (2): [1] 2 »   

> Без описания

  Супермодератор
Отправлено: 2 июля 2022 — 11:02
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Содержимое данной темы скопипащено с просторов интернета. Автор этого мануала - много уважаемый мной Bugo. Сохраняю здесь исключительно для удобства поиска в качестве полезной инфы по работе с SMF...

Часть первая (ознакомительная)

Не все знают, что в последних версиях второй линейки SMF появился ряд полезных (как для авторов модов, так и для администраторов форумов) функций, основная цель которых — уменьшить количество проблем при установке/удалении модов (когда моды вносят изменения в одни и те же файлы и в одни и те же места, проблемы неизбежны).

Более полную информацию об этих новых функциях можно найти в wiki-документации. Называются они хуками. К сожалению, там описаны далеко не все реализованные хуки (но в будущем ситуация должна измениться).

Рассмотрим несколько новых хуков на примере Quick Spoiler. Этот мод добавляет кнопку в редактор, для вставки в сообщения пары тегов:

code:
[spoiler][/spoiler]



Итак, прежде всего заглянем в архив мода и обратим внимание, что там нет привычного файла install.xml (или modification.xml). Там вообще из привычных *.xml файлов остался только package-info.xml, в котором прописана процедура установки. В частности, в нем указано, что при установке (и удалении) мода нужно запустить файл hooks.php. Откроем этот файл.

Наблюдаем следующую запись

code:
$hooks = array(
'integrate_pre_include' => '$boarddir/Sources/Subs-QuickSpoiler.php',
'integrate_bbc_codes' => 'spoiler_bbc_add_code',
'integrate_bbc_buttons' => 'spoiler_bbc_add_button',
'integrate_general_mod_settings' => 'spoiler_settings'
);

if (!empty($context['uninstalling']))
$call = 'remove_integration_function';
else
$call = 'add_integration_function';

foreach ($hooks as $hook => $function)
$call($hook, $function);


Это и есть хуки. Функция add_integration_function обходит массив $hooks и добавляет указанные значения в соответствующие переменные. Например, переменной $modSettings['integrate_bbc_codes'] будет присвоено значение spoiler_bbc_add_code, а переменной $modSettings['integrate_bbc_buttons'] — spoiler_bbc_add_button. При удалении мода [if (!empty($context['uninstalling']))] эти значения из переменных удаляются.

Хук integrate_pre_include обрабатывается в Load.php и содержит в себе путь к файлу, который необходимо подключить после установки мода. Раньше, без этого хука, для подключения нужного файла приходилось прописывать строчку require_once('путь к файлу') в index.php (тем самым внося изменения в один из ключевых файлов форума) — причем делать это после каждого обновления форума. Теперь же путь будет храниться в базе данных, а подключаемый файл может содержать внутри любые ваши функции.

Продолжаем изучение package-info.xml. Как видим, при установке в директорию /Sources распаковывается файл Subs-SimpleSpoiler.php. Наши функции, которые вызываются в остальных хуках, описаны именно в этом файле: spoiler_bbc_add_code, spoiler_bbc_add_button и spoiler_settings.

Конструкция в начале файла Subs-QuickSpoiler.php

code:
if (!defined('SMF'))
die('Hacking attempt...');


обязательна, так как не даёт запустить файл напрямую, минуя SMF. Не забывайте её использовать в своих проектах.

В функции spoiler_bbc_add_code через хук integrate_bbc_codes добавляем нужные нам теги (в данном случае: [spoiler][/spoiler]):

code:
$codes[] = array(
'tag' => 'spoiler',
'before' => '<div class="sp-wrap"><div class="sp-body" title="' . $txt['quick_spoiler'] . '">',
'after' => '</div></div>',
'block_level' => true,
);
$codes[] = array(
'tag' => 'spoiler',
'type' => 'unparsed_equals',
'before' => '<div class="sp-wrap"><div class="sp-body" title="$1">',
'after' => '</div></div>',
'block_level' => true,
);



Здесь же происходит вызов другой функции, в которой подключаются таблица стилей и скрипты, необходимые для работы спойлера:


code:
spoiler_header();



Функция spoiler_bbc_add_button через хук integrate_bbc_buttons предоставляет возможность добавить новую кнопку, для вставки наших тегов:

code:
function spoiler_bbc_add_button($buttons)
{
global $txt;

$buttons[count($buttons) - 1][] = array(
'image' => 'spoiler',
'code' => 'spoiler',
'before' => '[spoiler]',
'after' => '[/spoiler]',
'description' => $txt['quick_spoiler'],
);
}



В конце файла видим небольшую функцию spoiler_settings, которая подключается через хук integrate_general_mod_settings:

code:
function spoiler_settings($config_vars)
{
global $txt;
loadLanguage('QuickSpoiler');
$config_vars[] = array('select', 'qs_hide_img', explode('|', &$txt['qs_hide_select']));
$config_vars[] = array('check', 'qs_fancy');
}


Это ни что иное, как добавление настроек мода в раздел Настройки модификаций. То есть при установке даже не потребуется редактировать файл ManageSettings.php, как это делалось раньше. Обратите внимание: все текстовые переменные хранятся в отдельном файле, который подключается через функцию loadLanguage.

Кстати, названия ваших функций могут быть любыми. Лишь бы они вызывались через нужные хуки.

Таким образом, при очередном обновлении форума вам даже не потребуется переустанавливать этот мод — всё будет подключаться автоматически, при наличии нужных записей в переменных $modSettings. При установке других подобных модов, использующих те же хуки, значения этих переменных не обнуляются, а дополняются, через запятую. Главное, чтоб названия пользовательских функций не совпадали. Единственное, что может потребоваться сделать — закинуть файлик spoiler.gif в директорию images каждой темы оформления, которую вы захотите добавить позже.
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 11:10
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Часть вторая (познавательная)

Примечание: один из новых хуков, введенных в RC5, оказался не на том месте и не в том «оформлении». Речь идёт о хуке, помогающем добавлять настройки модов в раздел Настройки модификаций, без изменения файла ManageSettings.php. Именно изменения в этом файле зачастую вызывают кучу проблем при установке каждого очередного мода. Разработчики уже в курсе ошибки, но исправлять её отказались, до выхода финала (как обычно). Но это исправление не сложно сделать самостоятельно.

Открываем ManageSettings.php, находим блок:

code:
function ModifyModSettings()
{
global $context, $txt, $scripturl, $modSettings, $settings;

$context['page_title'] = $txt['admin_modifications'];

$subActions = array(
'general' => 'ModifyGeneralModSettings',
// Mod authors, once again, if you have a whole section to add do it AFTER this line, and keep a comma at the end.
);

loadGeneralSettingParameters($subActions, 'general');

// Load up all the tabs...
$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['admin_modifications'],
'help' => 'modsettings',
'description' => $txt['modification_settings_desc'],
'tabs' => array(
'general' => array(
),
),
);

// Make it easier for mods to add new areas.
call_integration_hook('integrate_modify_modifications', array(&$subActions, &$context[$context['admin_menu_name']]['tab_data']['tabs']));

// Call the right function for this sub-acton.
$subActions[$_REQUEST['sa']]();
}


и меняем его на:

code:
function ModifyModSettings()
{
global $context, $txt, $scripturl, $modSettings, $settings;

$context['page_title'] = $txt['admin_modifications'];

$subActions = array(
'general' => 'ModifyGeneralModSettings',
// Mod authors, once again, if you have a whole section to add do it AFTER this line, and keep a comma at the end.
);

// Make it easier for mods to add new areas.
call_integration_hook('integrate_modify_modifications', array(&$subActions));

loadGeneralSettingParameters($subActions, 'general');

// Load up all the tabs...
$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['admin_modifications'],
'help' => 'modsettings',
'description' => $txt['modification_settings_desc'],
'tabs' => array(
'general' => array(
),
),
);

// Call the right function for this sub-acton.
$subActions[$_REQUEST['sa']]();
}



После этого станет возможным нормальное добавление страниц настроек модов. Например, сейчас при установке большинства модов, имеющих настройки, ищется блок:

code:
'tabs' => array(
'general' => array(
),
),


и затем заменяется на что-то вроде:

code:
'tabs' => array(
'general' => array(
),
'my_mod' => array(
),
),



Это крайне неудобно. Даже если затем мы по порядку установим ещё несколько модов, без всяких проблем, мы обязательно столкнемся с проблемами при удалении какого-нибудь мода. Но хук integrate_modify_modifications решает проблему. После изменения, предложенного мной выше, достаточно будет в install.php вашего мода прописать:

code:
$hooks = array(
'integrate_pre_include' => '$boarddir/Sources/Subs-MyMod.php',
'integrate_admin_areas' => 'my_mod_admin_areas',
'integrate_modify_modifications' => 'my_mod_modifications',
);

if (!empty($context['uninstalling']))
$call = 'remove_integration_function';
else
$call = 'add_integration_function';



При этом файл Subs-MyMod.php может выглядеть примерно так:

code:
<?php

if (!defined('SMF'))
die('Hacking attempt...');

function my_mod_admin_areas(&$admin_areas)
{
global $txt;

$admin_areas['config']['areas']['modsettings']['subsections']['my_mod_features'] = array($txt['my_mod_title']);
}

function my_mod_modifications(&$subActions)
{
$subActions['my_mod_features'] = 'my_mod_settings';
}

function my_mod_settings()
{
global $context, $txt, $scripturl;

$context['page_title'] = $context['settings_title'] = $txt['my_mod_modifications_desc'];
$context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=my_mod_area';
$context[$context['admin_menu_name']]['tab_data']['tabs']['my_mod_features'] = array('description' => $txt['my_mod_desc']);

$config_vars = array(
array('check', 'my_mod_any_option'),
);

// Saving?
if (isset($_GET['save']))
{
checkSession();
saveDBSettings($config_vars);
redirectexit('action=admin;area=modsettings;sa=my_mod_area');
}

prepareDBSettingContext($config_vars);
}

?>



Обратите внимание на первую функцию (my_mod_admin_areas(&$admin_areas)) в этом файле. Она (через хук integrate_admin_areas) замещает те изменения, которые раньше при установке модов приходилось делать в Admin.php.
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 11:14
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Часть третья (заключительная)

Рассмотрим ещё несколько полезных хуков: integrate_display_buttons, integrate_mod_buttons, integrate_menu_buttons, integrate_buffer. Порядок их использования аналогичен уже рассмотренным в примерах выше.

Например, хуки integrate_display_buttons и integrate_mod_buttons позволяют добавить свою кнопку на страницу просмотра темы, без редактирования файла Display.template.php. Первый хук — для обычных кнопок, второй — для модераторских. Подробно их рассматривать не буду.

Для добавления/изменения кнопок в главном меню предназначается хук integrate_menu_buttons. Например, в моде Fancy Features я с помощью этого хука устанавливаю опциональное отображение кнопки "Помощь", а также добавляю в подменю Админка новый пункт — Расширенные настройки (для быстрого перехода к настройкам мода):

code:
function fancy_menu_buttons($buttons)
{
global $modSettings, $context, $txt, $scripturl;

if (!empty($modSettings['fancy_button_help'])) {
unset($buttons['help']);
if ($context['current_action'] == 'help') redirectexit('action=home');
}

if ($context['allow_admin']) {
$counter = 0;
foreach ($buttons['admin']['sub_buttons'] as $area => $dummy)
{
$counter++;
if ($area == 'packages')
break;
}

$buttons['admin']['sub_buttons'] = array_merge(
array_slice($buttons['admin']['sub_buttons'], 0, $counter, TRUE),
array('modsettings' => array(
'title' => $txt['fancy_modifications_desc'],
'href' => $scripturl . '?action=admin;area=modsettings;sa=fancy_features',
'show' => allowedTo('admin_forum'),
)),
array_slice($buttons['admin']['sub_buttons'], $counter, NULL, TRUE)
);
}
}



Хук integrate_buffer — без сомнения, один из самых интересных. К примеру, в моде Custom Copyright с помощью этого хука под копирайтом SMF можно добавить собственный:

code:
function editBuffer($buffer)
{
global $modSettings;

if(empty($modSettings['custom_copyright_message']) || $modSettings['custom_copyright_message'] == 'Edit This...' || empty($modSettings['custom_copyright_enable']))
return $buffer;

$search = ', Simple Machines LLC</a>';
$replace = ', Simple Machines LLC</a><br />' . $modSettings['custom_copyright_message'];
return (isset($_REQUEST['xml']) ? $buffer : str_replace($search, $replace, $buffer));
}
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:10
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Интеграция "Хуков".

A SMF integration hook is a single line of code that calls one or more functions from a list stored in $modSettings. This means that a modder can cause some new code to be run at that point, without changing the core code. It means modders need not worry that some other mod might already have altered the code they want to change. The introduction of integration hooks to SMF has the potential to radically simplify the task of creating and installing many types of mods, and creating bridges to third-party code. Integration hooks are only available in SMF version 2.0 and onwards! A mod's installation package can permanently store its list of hook functions on the database, and specify files to load. A mod can also add integration hook functions from within its code.

Using Integration Hooks
Integration Hooks might seem subtle and mysterious, because it makes the code more dynamic. Anyone reading through the code will have to know the contents of $modSettings in order to know what code is going to be executed at a hook. The concept is simple, though. Just as $modSettings has been used to store all kinds of settings, it is now being used to store the names of functions to execute when an integration hook is called. Most integration hooks appear in the code as a call to call_integration_hook.

code:
function call_integration_hook('name', array(&$param1, &$param2));


Where 'name' is the name of the integration hook, as given in the list below, and the array contains all the parameters to be passed to any integration hook functions that may have been added to the named hook. Because these parameters are passed with the &$ syntax, the parameters are available to be modified by the integration hook functions. In order to take advantage of this, the function definitions must also use the &$ syntax for receiving the parameters

code:
function my_integration_hook_function(&$param1, &$param2){.....}


Before calling each integration hook function, call_integration_hook will check whether that function is callable. If not, it will silently skip that function.

The same function can be added to multiple hooks, but cannot be added more than once to the same hook. It is important to choose unique function names, perhaps by using the Mod name (or an abbreviation) as a prefix, in order to decrease the likelihood that some other mod writer will someday create a function of the same name.

Only one of the integration hooks is not implemented with call_integration_hook. This is the hook 'integrate_pre_load'. This hook simply includes all the files that have been added to the hook.

One of the first mods to take advantage of integration hooks, SlammedDime's SimpleSEF mod, makes only a few edits to the core code, simply to add admin options. The rest of the work is done using integration hooks to load the main SimpleSEF file.

Mod writers would generally do this in an installation script that runs during mod install - like SimpleSEF does. To avoid overwriting any settings already there, use add_integration_function. If it's a one-off thing, use phpMyAdmin and add a new row to, or modify an existing row in the {db_prefix}settings table.

The hook 'integrate_pre_load' is designed to pre-load files containing integration hook function definitions. By adding your file to this hook at install time, you can ensure that all your integration hook functions will be loaded on every page of the forum.

Adding to hooks
add_integration_function

code:
add_integration_function ($hook_name, $hook_executes, $make_permanent);


Depending on the $hook_name used, the value of $hook_executes should be either function_name or a file_path. If $make_permanent is TRUE, the change is saved on the database and the $modSettings cache (if caching is used). If $make_permanent is FALSE, no changes are made to the database or the cache.

A modwriter working on a mod called SimplyPerfect might add something like the following to the mod's install.php file:

code:
add_integration_function('integrate_pre_include', '$sourcedir/Subs-SimplyPerfect.php',TRUE);
add_integration_function('integrate_actions','SimplyPerfect_actions',TRUE);
add_integration_function('integrate_bbc_codes','SimplyPerfect_bbc_codes',TRUE);


remove_integration_function

code:
remove_integration_function($hook_name, $function_name);


This function removes an integration hook (temporary or permanent) from $modSettings, from the database, and from the $modSettings cache.

A mod which needs to temporarily add some novel BBC codes on a special page could use:

code:
add_integration_function('integrate_bbc_codes','SimplyTemporary_bbc_codes',FALSE);
...
remove_integration_function('integrate_bbc_codes','SimplyTemporary_bbc_codes');
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:18
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

List of Integration Hooks

So, what are the hooks and how do you use them?

This list documents each of the hooks, what it does, and what it expects as input.

Each hook can be defined and set using the names below. e.g. integrate_pre_include would be referenced in $modSettings as $modSettings['integrate_pre_include'], and managed in the settings table under that name too.

Each integration hook has been described in the following manner:

* Called from: - lists which file it's called from, and at what point the hook will be called on your behalf.

* Purpose: - what the hook is designed for and what it can allow you to do.

* Accepts: - what type of input the hook is expecting. In almost every case this will simply be the name of a function to call, though can be a static method of a class. It should be obvious that the function will need to already be loaded and thus available to SMF already - if not, you may need to ensure integrate_pre_include loads it, the main SMF files contain it, or you otherwise ensure it is loaded.

* Sends: - the list of parameters in order that the hook will be sent from SMF. May be no variables, may be many. If the hook sends variables that you may want to modify before your function ends, make sure your function states it wants the variables by reference.


For example if a hook states that it sends $value1, $value2 and you want to be able to modify those in your function myfunc(), the specification would be:

code:
function myfunc(&$value1, &$value2)


Include files

integrate_admin_include
Called from: Admin.php, just after $admin_areas has been filled and before the call to the #integrate_admin_areas hook.
Purpose: Allows for example loading files that create new admin sections (used by the hook integrate_admin_areas) or more in general loading files that are needed only in the administration section.
Accepts: A string containing a path to a file to load. Certain identifiers can be used which include:
$boarddir translates to the absolute path to your forum, such as /var/www/smf
$sourcedir points to the Sources directory which normally would reside inside SMF's home directory
$themedir points to the directory of the user's current theme
Sends: No parameters, just looks for the file and loads it if found. If the file does not exist, the function silently skips the call and no error is produced.

integrate_pre_include
Called from: Load.php, just after $modSettings has been loaded, which is very, very early on in SMF processing.
Purpose: Allows you to load a single file of PHP source of your own code. Can be used for other integration functions, as it will be loaded on every single page load.
Accepts: A string containing a path to a file to load. Certain identifiers can be used which include:
$boarddir translates to the absolute path to your forum, such as /var/www/smf
$sourcedir points to the Sources directory which normally would reside inside SMF's home directory
Sends: No parameters, just looks for the file and loads it if found. If the file does not exist, the function silently skips the call and no error is produced.
Example: To include a file called MyFile.php in Sources, the syntax would be $sourcedir/MyFile.php.

integrate_theme_include
Called from: Load.php, just after the theme has been initialized and before the call to the #integrate_load_theme hook.
Purpose: Allows loading files needed by the integrate_load_theme hook.
Accepts: A string containing a path to a file to load. Certain identifiers can be used which include:
$boarddir translates to the absolute path to your forum, such as /var/www/smf
$sourcedir points to the Sources directory which normally would reside inside SMF's home directory
$themedir points to the directory of the user's current theme
Sends: No parameters, just looks for the file and loads it if found. If the file does not exist, the function silently skips the call and no error is produced.
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:20
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

General hooks

integrate_actions
Called from: index.php, just after the creation of the action array
Purpose: To allow add or remove actions from the action array.
Accepts: 1 function name.
Sends: $actionArray, this is the array containing all the actions provided by SMF. The structure of the array is:

code:
'myaction' => array('ActionFile.php', 'action_function'),


where:
myaction - is the action as it appears in the url (e.g. http://yourforum.tld/forum/index.php?action=myaction)
ActionFile.php - is the file containing the function that is called when the action is requested
action_function - is the name of the function that will be executed

integrate_egg_nog
Called from: ViewQuery.php, before the query log (full page) is built.
Purpose: To be able to add any pre-processing to the query log that may be necessary prior to outputting. Will be of limited use.
Accepts: 1 function name.
Sends: No variables, just calls the function(s) - after verifying the function exists.

integrate_load_theme
Called from: Load.php, at the end of loadTheme(), to load any information that potentially affects top level loading of the theme itself.
Purpose: Designed to modify the layers to be loaded during page generation, for example to avoid calling the 'html' layer if the page is part of a CMS output (where there will already be a similar layer). Orstio expands on it a little more, covering off my initial theory that it was for exporting data to a CMS, rather than its actual use of pulling from.
Accepts: 1 function name.
Sends: No variables, just calls the function - after verifying the function exists.

integrate_load_permissions
Called from: ManagePermissions.php, just after the default permission arrays have been created and populated
Purpose: To allow modify permissions
Accepts: 1 function name.
Sends: $permissionGroups, $permissionList, $leftPermissionGroups, $hiddenPermissions, $relabelPermissions

integrate_menu_buttons
Called from: Subs.php, just after having populated the $menu_buttons array with the standard entries.
Purpose: To allow modify SMF's main menu
Accepts: 1 function name.
Sends: $menu_buttons

integrate_output_error
Called from: Errors.php, just after the error itself has been logged but before it has been output to the user.
Purpose: To allow reformatting of the error message, prior to notification to user, or perhaps to log or process in an outside system (e.g. sending an email to administrators on certain types of error occurring)
Accepts: 1 function name.
Sends: $message, $error_type, $error_level, $file, $line
$message - is the message text itself.
$error_type - is the SMF category of an error, e.g. General (general), undefined variables/indexes (undefined_vars), user errors like forgotten passwords (user), database/query errors (database).
$error_level - is the PHP error level ident. See the PHP manual for the values this is.
$file - is the filename this occurred in (full server path).
$line - is the line number of the error.

integrate_pre_load
Called from: Load.php, just after $modSettings has been loaded, which is very, very early on in SMF processing - immediately after integrate_pre_include is checked.
Purpose: Allows you to call one or more functions before general SMF processing begins. These can be any defined functions, though it is entirely possible that they are defined in the file loaded by #integrate_pre_include.
Accepts: 1 function name.
Sends: No variables, just calls the function - after verifying the function exists.

integrate_whos_online
Called from: Who.php, if index.php was the loaded page of the user but it's because something else with integration is happening.
Purpose: To be able to add listed actions to Who's Online from integrated apps.
Accepts: 1 function name.
Sends: $actions array from Who.php which will basically be the components of the URL, e.g. index.php?action=page;sa=something results in $actions being array('action' => 'page', 'sa' => 'something') which the integrated function can use to identify what the action really is.
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:22
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Log in/log out

integrate_login
Called from: LogInOut.php, DoLogIn(), almost first instruction in the function - used during user actively logged in (session exists, more validating that than anything else) Register.php, Register2(), once registration is completed, just before setting up user cookie - so registration will log them in to both SMF and integrated app
Purpose: To log user in on both integrated code and in SMF at the same time.
Accepts: 1 function name.
Sends: three variables: string of user's username, string of password (hashed) or null if not supplied, length of cookie lifetime in minutes

integrate_logout
Called from: LogInOut.php, LogOut(), if the user is not a guest, after unsetting some session variables, but before clearing their entry in {db_prefix}log_online. They are, technically, still listed as online when the hook is called.
Purpose: To initiate logout in integrated code.
Accepts: 1 function name.
Sends: string representing user's name

integrate_reset_pass
Called from: Lots of places Profile-Modify.php, authentication(), just before a new password is hashed and about to be inserted into the database (user modifying own password, I think) Profile.php, ModifyProfile(), for admin modifying another user's password (I think) Reminder.php, setPassword2(), for when a user resets their password from reminder email Reminder.php, SecretAnswer2(), for when a user successfully posts their secret answer Subs-Auth.php, resetPassword(), for when user has forgotten their password and a new one is emailed to them.
Purpose: For notifying external code when a user's password is modified outside of registration.
Accepts: 1 function name.
Sends: $old_user, $user, $newPassword
$old_user - frequently the same as $user, in some cases it can be an unsanitised version of the username
$user - the user name
$newPassword - the newly set password, from whatever source

integrate_validate_login
Called from: LogInOut.php, Login2(), just before actually calling for the user's record in the database.
Purpose: To validate credentials in an external data source as well as with SMF.
Accepts: 1 function name.
Sends: three variables: string of user's username, string of password (hashed) or null if not supplied, length of cookie lifetime in minutes
Unlike other functions, this hook explicitly requires a return value - not all other hook functions handle return values. The return value is a string - either "retry" if there was an issue and user needs to try again, or anything else if the hooked function does not have an issue with the supplied details.

integrate_verify_password
Called from: multiple places Profile.php, ModifyProfile(), to ensure password is valid before modifying profile details that require password confirmation. Security.php, validateSession() twice - once, to ensure password is valid during a regular check, and once to ensure adminstrator's password is correct (i.e. even though we were logged in, we need to reauthenticate e.g. admin panel)
Purpose: To run any further tests to validate the user supplied password.
Accepts: 1 function name.
Sends: two variables, representing user name and current unhashed password.
Unlike other functions, this hook explicitly requires a return value - not all other hook functions handle return values. The return value is either exactly identical to true if acceptable, or anything else is a fail.

integrate_verify_user
Called from: Load.php, loadUserSettings(), as the first option.
Purpose: To attempt to log in from external app first, by reusing login credentials; this is taken in preference to either cookie or session details.
Accepts: 1 function name.
Sends: No variables, just calls the function - after verifying the function exists.
Unlike other functions, this hook explicitly requires a return value - few other hook functions handle return values. The return value is cast to an integer to represent user id; 0 = not logged in and to refer to cookie then session, otherwise it represents the user id.
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:23
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Registration, and other user hooks

integrate_activate
Called from: Multiple places.
ManageMembers.php - during admin approval of members, immediately after approving a member
Profile-Actions.php - activating an account through the profile area
Register.php - activating an account from member activation, immediately after sending the message and immediately before actioning it.
Purpose: To ensure a member is activated in a separate system when activated in SMF itself.
Accepts: 1 function name.
Sends: string representing the member's name (since that is guaranteed to be consistent, member id is not)

integrate_change_member_data
Called from: Subs.php, updateMemberData(), immediately before processing to add to SMF's own tables.
Purpose: To ensure data is migrated to an external system as well as updating SMF's own tables.
Accepts: 1 function name.
Sends: $member_names, $var, $data[$var]
$member_names - an array of the names of members
$var - name of the variable being updated
$data[$var] - the new value

NOTE: Not all values are exported through this hook. Only the following will be exported - any other values updated will not.

'member_name' - user name
'real_name' - display name
'email_address' - email address
'id_group' - primary user group (only)
'gender' - male/female
'birthdate' - date of birth
'website_title' - name of website specified in profile
'website_url' - address of website specified in profile
'location' - the location stated in profile
'hide_email' - whether the user's email address should be considered private (admin visible only)
'time_format' - the user's time format string for their own time format
'time_offset' - the user's own time offset (from profile)
'avatar' - gallery or URL specified avatar
'lngfile' - user's language
integrate_delete_member
Called from: Subs-Members.php, deleteMembers(), immediately before logging that the action has been done (which is before the SMF tables are all updated)
Purpose: To ensure that the external app is updated when a user's account is removed.
Accepts: 1 function name.
Sends: Number representing user id being deleted from SMF tables.

integrate_register
Called from: Subs-Members.php, just before a user is physically added to the members table. (Same route runs whether it is a conventional user signup or from the admin panel) Validation on details has been carried out by this time.
Purpose: Could be used to do further validation of a user, e.g. an external lookup service or other system that the user accounts are linked to. Alternatively could be used to export user details to an external app and sign them up at the same time.
Accepts: 1 function name.
Sends: $regOptions, $theme_vars
$regOptions is a complex array variable. While the full list is in Subs-Members, the most pertinent for most cases are:
$regOptions['username'] - username used to sign up
$regOptions['password'] - password supplied (unhashed!)
$regOptions['email'] - email address supplied on signup
$regOptions['require'] - whether the account is immediate registration ('normal'), email activation ('activation'), COPPA form ('coppa') or admin approval (anything else, notionally 'admin')
$regOptions['memberGroup'] - primary membergroup id to assign (not validated)
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:24
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Posting and Personal Messages

integrate_bbc_buttons
Called from: Subs-Editor.php, during create_control_richedit(), just after the $context['bbc_tags'] array has been filled with the information regarding bbcode buttons.
Purpose: allows modify the appearance of the bbcode buttons in the rich editor (i.e. the editor with all the controls)
Accepts: 1 function name.
Sends: $context['bbc_tags']

integrate_bbc_codes
Called from: Subs.php, after all the information regarding the default bbcode tags are loaded in the $codes array
Purpose: allows easily add or remove or change the behaviour of bbcode tags.
Accepts: 1 function name.
Sends: $codes

integrate_create_topic
Called from: Subs-Post.php, if a post creates a new topic, once all other SMF processing has been done (like stats updates)
Purpose: Allows you to add topics to a CMS once they are posted. It would likely be better for something such as the Twitter mod to use this as a point to call, rather than modifying the code itself.
Accepts: 1 function name.
Sends: $msgOptions, $topicOptions, $posterOptions - the same three variables used to actually create a topic (see the Function Database for createPost for more), once the changes have been applied, so $topicOptions['id'] is the topic's id, $msgOptions['id'] is the id of its message, for example.

integrate_outgoing_email
Called from: Subs-Post.php, once an email has been assembled, just before it is inserted into the master email queue.
Purpose: Allows you to process or otherwise do something with any email before it is actually sent out.
Accepts: 1 function name.
Sends: $subject, $message, $headers
$subject - listing the email's subject
$message - its main message
$headers - the headers (which includes who it's to, who it's from, date, return path and other things)

integrate_personal_message
Called from: Subs-Post.php, sendpm() once the post is sanitized.
Purpose: To allow you to send or otherwise preprocess personal messages, you could export them to a third party CMS or similar.
Accepts: 1 function name.
Sends: $recipients, $from['username'], $subject, $message
$recipients - an array containing potentially two elements, 'to' and 'bcc', each of which will be an array of membernames that the message is going to
$from['username'] - the username sending the message
$subject - PM's subject
$message - message body
 
 Top

  Супермодератор
Отправлено: 2 июля 2022 — 12:26
ответить цитировать Post Id


 Покинул технарь
Профессионал
Сообщений: 1825
Регистрация: 12.2011

Profile

integrate_profile_areas
Called from: Profile.php, just after the definition of the default profile areas (i.e. the menu entries for the profile section)
Purpose: allows add or modify the menu in the profile area
Accepts: 1 function name.
Sends: $profile_areas

Admin panel

integrate_admin_areas
Called from: Admin.php, during AdminMain(), immediately after the default SMF admin areas have been defined.
Purpose: To allow code to modify the admin menu, adding or removing areas, sections or subsections from it.
Accepts: 1 function name.
Sends: $admin_areas that is the array of admin areas.

integrate_core_features
Called from ManageSettings.php at the beginning of the function ModifyCoreFeatures, just after the $core_features has been populated with the default SMF's Core Features.
Purpose Allows adding new features to the Core Features list in the administration panel.
Accepts 1 function name
Sends $core_features

integrate_general_mod_settings
Called from: ManageSettings.php, at the beginning of the function ModifyGeneralModSettings
Purpose: allows add new settings for mods to the page Modification Settings
Accepts: 1 function name.
Sends: $config_vars

integrate_modify_modifications
Called from: ManageSettings.php, at the beginning of the function ModifyModSettings
Purpose: allows add new pages for mod settings to the Modification Settings section.
Accepts: 1 function name.
Sends: $subActions, an array where the key is the subaction and the value is the name of the function to be called for the corresponding subaction
$subActions = array(
'general' => 'ModifyGeneralModSettings',
);
To add a new subaction a mod using this hook should contain:
$subActions['mysubaction'] = 'mysubaction_function';
 
 Top
Страниц (2): [1] 2 »
Сейчас эту тему просматривают: 3 (гостей: 3, зарегистрированных: 0)
« SMF Community »


Все гости форума могут просматривать этот раздел.
Только зарегистрированные пользователи могут создавать новые темы в этом разделе.
Все гости форума могут отвечать на сообщения в этом разделе.
 


> Создание ответа в тему "Система "хуков""
Имя: Гость   Вы зарегистрированы?
Помощь по ExBBCodes
С помощью кодов можно очень легко применять различные виды стилей к выделенному тексту.
Смайлики

smilie smilie smilie smilie smilie
smilie smilie smilie smilie smilie
smilie smilie smilie smilie smilie

все смайлики
Опции сообщения Вы хотите разрешить смайлики в этом сообщении?
   

> Темы, похожие на тему "Система "хуков""
Темы Форум Информация о теме Обновление
Моды для SMF
Описание наиболее часто применяемых модов.
SMF Community Ответов: 1
Автор темы: технарь
8 сентября 2014 — 13:32
Автор: технарь
Слои в SMF
Изучаем слои
SMF Community Ответов: 0
Автор темы: технарь
6 января 2017 — 20:28
Автор: технарь
Описание структуры файла package-info.xml
Попытка перевода
SMF Community Ответов: 0
Автор темы: технарь
6 января 2017 — 23:21
Автор: технарь
 


Powered by ExBB v1.1.180311