ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
migrate-sigs-form.php
Go to the documentation of this file.
1
<?php
2
3
function
phorum_htmlpurifier_show_migrate_sigs_form
()
4
{
5
$frm =
new
PhorumInputForm (
''
,
"post"
,
"Migrate"
);
6
$frm->hidden(
"module"
,
"modsettings"
);
7
$frm->hidden(
"mod"
,
"htmlpurifier"
);
8
$frm->hidden(
"migrate-sigs"
,
"1"
);
9
$frm->addbreak(
"Migrate user signatures to HTML"
);
10
$frm->addMessage(
'This operation will migrate your users signatures
11
to HTML. <strong>This process is irreversible and must only be performed once.</strong>
12
Type in yes in the confirmation field to migrate.'
);
13
if
(!file_exists(dirname(__FILE__) .
'/../migrate.php'
)) {
14
$frm->addMessage(
'Migration file does not exist, cannot migrate signatures.
15
Please check <tt>migrate.bbcode.php</tt> on how to create an appropriate file.'
);
16
}
else
{
17
$frm->addrow(
'Confirm:'
, $frm->text_box(
"confirmation"
,
""
));
18
}
19
$frm->show();
20
}
21
22
// vim: et sw=4 sts=4
phorum_htmlpurifier_show_migrate_sigs_form
phorum_htmlpurifier_show_migrate_sigs_form()
Definition:
migrate-sigs-form.php:3
libs
composer
vendor
ezyang
htmlpurifier
plugins
phorum
settings
migrate-sigs-form.php
Generated on Tue Jan 28 2025 19:01:04 for ILIAS by
1.8.13 (using
Doxyfile
)