Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F772270
fix_paths.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, 6:36 AM
Size
782 B
Mime Type
text/x-php
Expires
Mon, Feb 3, 6:36 AM (7 h, 33 m)
Engine
blob
Format
Raw Data
Handle
555312
Attached To
rINP In-Portal
fix_paths.tpl
View Options
<?php
$
config_vars = Array ('Site_Path', 'Site_Name', 'Backup_Path');
$
sql = 'SELECT Prompt, VariableName
FROM ' . TABLE_PREFIX . 'ConfigurationValues
WHERE VariableName IN ("' . implode('","',
$
config_vars) . '")';
$
config_labels =
$
this->Conn->GetCol(
$
sql, 'VariableName');
$
odd_even = true;
foreach (
$
config_vars as
$
config_var) {
?>
<
tr
class
=
"<?php echo
$
odd_even ? 'table-color1' : 'table-color2'; ?>"
>
<
td
class
=
"text"
><
b
>
<?php echo
$
this->Application->Phrase(
$
config_labels[
$
config_var] ); ?>
:
</
b
></
td
>
<
td
align
=
"left"
>
<
input
type
=
"text"
name
=
"config[<?php echo
$
config_var; ?>]"
class
=
"text"
size
=
"50"
value
=
"<?php echo
$
this->Application->ConfigValue(
$
config_var); ?>"
/>
</
td
>
</
tr
>
<?php
$
odd_even =
$
odd_even ? false : true;
}
?>
Event Timeline
Log In to Comment