Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\block; interface BlockRepositoryInterface { /** * Return on..
Decoded Output download
<?php
namespace Drupallock;
interface BlockRepositoryInterface {
/**
* Return only visible regions.
*
* @see system_region_list()
*/
const REGIONS_VISIBLE = 'visible';
/**
* Return all regions.
*
* @see system_region_list()
*/
const REGIONS_ALL = 'all';
/**
* Returns an array of regions and their block entities.
*
* @param \Drupal\Core\Cache\CacheableMetadata[] $cacheable_metadata
* (optional) List of CacheableMetadata objects, keyed by region. This is
* by reference and is used to pass this information back to the caller.
*
* @return array
* The array is first keyed by region machine name, with the values
* containing an array keyed by block ID, with block entities as the values.
*/
public function getVisibleBlocksPerRegion(array &$cacheable_metadata = []);
/**
* Based on a suggested string generates a unique machine name for a block.
*
* @param string $suggestion
* The suggested block ID.
* @param string $theme
* The machine name of the theme.
*
* @return string
* Returns the unique name.
*/
public function getUniqueMachineName(string $suggestion, string $theme): string;
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\block;
interface BlockRepositoryInterface {
/**
* Return only visible regions.
*
* @see system_region_list()
*/
const REGIONS_VISIBLE = 'visible';
/**
* Return all regions.
*
* @see system_region_list()
*/
const REGIONS_ALL = 'all';
/**
* Returns an array of regions and their block entities.
*
* @param \Drupal\Core\Cache\CacheableMetadata[] $cacheable_metadata
* (optional) List of CacheableMetadata objects, keyed by region. This is
* by reference and is used to pass this information back to the caller.
*
* @return array
* The array is first keyed by region machine name, with the values
* containing an array keyed by block ID, with block entities as the values.
*/
public function getVisibleBlocksPerRegion(array &$cacheable_metadata = []);
/**
* Based on a suggested string generates a unique machine name for a block.
*
* @param string $suggestion
* The suggested block ID.
* @param string $theme
* The machine name of the theme.
*
* @return string
* Returns the unique name.
*/
public function getUniqueMachineName(string $suggestion, string $theme): string;
}
Function Calls
None |
Stats
MD5 | b26b6bd8ab73abb66e6f8755b0a0636a |
Eval Count | 0 |
Decode Time | 83 ms |