You are here

public function DevelDumperManagerInterface::dumpOrExport in Devel 4.x

Same name and namespace in other branches
  1. 8.3 src/DevelDumperManagerInterface.php \Drupal\devel\DevelDumperManagerInterface::dumpOrExport()
  2. 8 src/DevelDumperManagerInterface.php \Drupal\devel\DevelDumperManagerInterface::dumpOrExport()
  3. 8.2 src/DevelDumperManagerInterface.php \Drupal\devel\DevelDumperManagerInterface::dumpOrExport()

Wrapper for ::dump() and ::export().

Parameters

mixed $input: The variable to dump.

string $name: (optional) The label to output before variable, defaults to NULL.

bool $export: (optional) Whether return string representation of a variable.

string $plugin_id: (optional) The plugin ID, defaults to NULL.

Return value

string|null String representation of a variable if $export is set to TRUE, NULL otherwise.

1 method overrides DevelDumperManagerInterface::dumpOrExport()
DevelDumperManager::dumpOrExport in src/DevelDumperManager.php
Wrapper for ::dump() and ::export().

File

src/DevelDumperManagerInterface.php, line 87

Class

DevelDumperManagerInterface
Interface DevelDumperManagerInterface.

Namespace

Drupal\devel

Code

public function dumpOrExport($input, $name = NULL, $export = TRUE, $plugin_id = NULL);