Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F772593
upgrade_modules.tpl
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Feb 1, 12:16 PM
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 3, 12:16 PM (22 h, 19 m)
Engine
blob
Format
Raw Data
Handle
555249
Attached To
rINP In-Portal
upgrade_modules.tpl
View Options
<?php
ob_start();
?>
<
tr
class
=
"table-color2"
>
<
td
class
=
"text"
colspan
=
"2"
valign
=
"middle"
>
<
table
cellpadding
=
"0"
cellspacing
=
"0"
>
<
tr
>
<
td
valign
=
"top"
>
<
input
type
=
"checkbox"
%
3
$
s
name
=
"modules[]"
id
=
"module_%1
$
s"
value
=
"%1
$
s"
/>
</
td
>
<
td
valign
=
"top"
>
<
label
for
=
"module_%1
$
s"
>
%2
$
s
</
label
>
<
div
style
=
"font-weight: bold; color: red;"
>
%4
$
s
</
div
>
</
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
<?php
$
module_tpl = ob_get_clean();
$
selected =
$
this->GetVar('modules') ?
$
this->GetVar('modules') : Array ('core');
$
modules =
$
this->GetUpgradableModules();
foreach (
$
modules as
$
module_name =>
$
module_params) {
$
module_name = strtolower(
$
module_name);
$
upgrade_versions = Array (
$
module_params['Version'],
$
module_params['ToVersion'],
);
$
prerequisites_errors =
$
this->toolkit->CheckPrerequisites(
$
module_params['Path'],
$
upgrade_versions, 'upgrade');
$
module_version =
$
module_params['Version'].' to '.
$
module_params['ToVersion'];
if (
$
this->Application->isDebugMode()) {
$
module_version .= '; from: '.
$
module_params['FromVersion'];
}
if (
$
prerequisites_errors) {
// disable checkbox, when some of prerequisites not passed
$
checked = 'disabled';
}
else {
// preserve user selected checked status
$
checked = in_array(
$
module_name,
$
selected) ? 'checked="checked"' : '';
}
$
error_msg =
$
prerequisites_errors ? implode('<br />',
$
prerequisites_errors) : '';
$
module_string =
$
this->toolkit->getModuleString(
$
module_name,
$
module_version);
echo sprintf(
$
module_tpl,
$
module_name,
$
module_string,
$
checked,
$
error_msg);
}
?>
<
tr
class
=
"table-color1"
>
<
td
class
=
"hint"
colspan
=
"2"
valign
=
"middle"
>
<
img
src
=
"incs/img/icon_warning.gif"
width
=
"14"
height
=
"14"
align
=
"absmiddle"
/>
Your data will be modified during the upgrade. We strongly recommend that you make a backup of your database. Proceed with the upgrade ?
</
td
>
</
tr
>
Event Timeline
Log In to Comment