_drupal_rewrite_settings_dump_one(\stdClass $variable, $prefix = '', $suffix = '')
Helper for drupal_rewrite_settings().
Dump the value of a value property and adds the comment if it exists.
Parameters
object $variable: A stdClass object with at least a value property.
string $prefix: A string to prepend to the variable's value.
string $suffix: A string to append to the variable's value.
Return value
string A string containing valid PHP code of the variable suitable for placing into settings.php.
File
- core/includes/install.inc, line 469
- API functions for installing modules and themes.
Code
1 2 3 4 5 6 7 8 | function _drupal_rewrite_settings_dump_one(\stdClass $variable , $prefix = '' , $suffix = '' ) { $return = $prefix . var_export( $variable ->value, TRUE) . ';' ; if (! empty ( $variable ->comment)) { $return .= ' // ' . $variable ->comment; } $return .= $suffix ; return $return ; } |
Please login to continue.