Same name in this branch
  1. 10 core/lib/Drupal/Component/Utility/Variable.php \Drupal\Component\Utility\Variable
  2. 10 core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php \Drupal\migrate_drupal\Plugin\migrate\source\Variable
Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Utility/Variable.php \Drupal\Component\Utility\Variable
  2. 9 core/lib/Drupal/Component/Utility/Variable.php \Drupal\Component\Utility\Variable

Provides helpers for dealing with variables.

Hierarchy

  • class \Drupal\Component\Utility\Variable

Expanded class hierarchy of Variable

Related topics

8 files declare their use of Variable
Datelist.php in core/lib/Drupal/Core/Datetime/Element/Datelist.php
DatelistElementFormTest.php in core/tests/Drupal/KernelTests/Core/Datetime/DatelistElementFormTest.php
Datetime.php in core/lib/Drupal/Core/Datetime/Element/Datetime.php
DatetimeElementFormTest.php in core/tests/Drupal/KernelTests/Core/Datetime/DatetimeElementFormTest.php
DbDumpCommand.php in core/lib/Drupal/Core/Command/DbDumpCommand.php

... See full list

6 string references to 'Variable'
MultilingualReviewPageTest::getMissingPaths in core/modules/migrate_drupal_ui/tests/src/Functional/d7/MultilingualReviewPageTest.php
Gets the missing upgrade paths.
NoMultilingualReviewPageTest::getMissingPaths in core/modules/migrate_drupal_ui/tests/src/Functional/d7/NoMultilingualReviewPageTest.php
Gets the missing upgrade paths.
update.source.schema.yml in core/modules/update/config/schema/update.source.schema.yml
core/modules/update/config/schema/update.source.schema.yml
Upgrade7Test::getMissingPaths in core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
Upgrade7Test::getMissingPaths in core/modules/forum/tests/src/Functional/migrate_drupal/d7/Upgrade7Test.php

... See full list

File

core/lib/Drupal/Component/Utility/Variable.php, line 10

Namespace

Drupal\Component\Utility
View source
class Variable {

  /**
   * Generates a human-readable name for a callable.
   *
   * @param callable $callable
   *   A callable.
   *
   * @return string
   *   A human-readable name for the callable.
   */
  public static function callableToString($callable) : string {
    if ($callable instanceof \Closure) {
      return '[closure]';
    }
    elseif (is_array($callable) && $callable) {
      if (is_object($callable[0])) {
        $callable[0] = get_class($callable[0]);
      }
      return implode('::', $callable);
    }
    elseif (is_string($callable)) {
      return $callable;
    }
    else {
      return '[unknown]';
    }
  }

  /**
   * Drupal-friendly var_export().
   *
   * @param mixed $var
   *   The variable to export.
   * @param string $prefix
   *   A prefix that will be added at the beginning of every lines of the output.
   *
   * @return string
   *   The variable exported in a way compatible to Drupal's coding standards.
   */
  public static function export($var, $prefix = '') {
    if (is_array($var)) {
      if (empty($var)) {
        $output = 'array()';
      }
      else {
        $output = "array(\n";

        // Don't export keys if the array is non associative.
        $export_keys = array_values($var) != $var;
        foreach ($var as $key => $value) {
          $output .= '  ' . ($export_keys ? static::export($key) . ' => ' : '') . static::export($value, '  ') . ",\n";
        }
        $output .= ')';
      }
    }
    elseif (is_bool($var)) {
      $output = $var ? 'TRUE' : 'FALSE';
    }
    elseif (is_string($var)) {
      if (str_contains($var, "\n") || str_contains($var, "'")) {

        // If the string contains a line break or a single quote, use the
        // double quote export mode. Encode backslash, dollar symbols, and
        // double quotes and transform some common control characters.
        $var = str_replace([
          '\\',
          '$',
          '"',
          "\n",
          "\r",
          "\t",
        ], [
          '\\\\',
          '\\$',
          '\\"',
          '\\n',
          '\\r',
          '\\t',
        ], $var);
        $output = '"' . $var . '"';
      }
      else {
        $output = "'" . $var . "'";
      }
    }
    elseif (is_object($var) && get_class($var) === 'stdClass') {

      // var_export() will export stdClass objects using an undefined
      // magic method __set_state() leaving the export broken. This
      // workaround avoids this by casting the object as an array for
      // export and casting it back to an object when evaluated.
      $output = '(object) ' . static::export((array) $var, $prefix);
    }
    else {
      $output = var_export($var, TRUE);
    }
    if ($prefix) {
      $output = str_replace("\n", "\n{$prefix}", $output);
    }
    return $output;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Variable::callableToString public static function Generates a human-readable name for a callable.
Variable::export public static function Drupal-friendly var_export().