Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,61 @@
<?php
namespace Drupal\devel;
use Drupal\Component\Render\MarkupInterface;
/**
* Base interface definition for DevelDumper plugins.
*
* @see \Drupal\devel\Annotation\DevelDumper
* @see \Drupal\devel\DevelDumperPluginManager
* @see \Drupal\devel\DevelDumperBase
* @see plugin_api
*/
interface DevelDumperInterface {
/**
* Dumps information about a variable.
*
* @param mixed $input
* The variable to dump.
* @param string|null $name
* (optional) The label to output before variable, defaults to NULL.
*/
public function dump(mixed $input, ?string $name = NULL);
/**
* Returns a string representation of a variable.
*
* @param mixed $input
* The variable to export.
* @param string|null $name
* (optional) The label to output before variable, defaults to NULL.
*
* @return \Drupal\Component\Render\MarkupInterface|string
* String representation of a variable.
*/
public function export(mixed $input, ?string $name = NULL): MarkupInterface|string;
/**
* Returns a string representation of a variable wrapped in a render array.
*
* @param mixed $input
* The variable to export.
* @param string|null $name
* (optional) The label to output before variable, defaults to NULL.
*
* @return array
* String representation of a variable wrapped in a render array.
*/
public function exportAsRenderable(mixed $input, ?string $name = NULL): array;
/**
* Checks if requirements for this plugin are satisfied.
*
* @return bool
* TRUE is requirements are satisfied, FALSE otherwise.
*/
public static function checkRequirements(): bool;
}