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\Core\Entity; use Drupal\Core\Config\Entity\ConfigEntityInterface;..
Decoded Output download
<?php
namespace Drupal\Core\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for entity types that hold form and view mode settings.
*/
interface EntityDisplayModeInterface extends ConfigEntityInterface {
/**
* Gets the entity type this display mode is used for.
*
* @return string
* The entity type name.
*/
public function getTargetType();
/**
* Set the entity type this display mode is used for.
*
* @param string $target_entity_type
* The target entity type for this display mode.
*
* @return $this
*/
public function setTargetType($target_entity_type);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for entity types that hold form and view mode settings.
*/
interface EntityDisplayModeInterface extends ConfigEntityInterface {
/**
* Gets the entity type this display mode is used for.
*
* @return string
* The entity type name.
*/
public function getTargetType();
/**
* Set the entity type this display mode is used for.
*
* @param string $target_entity_type
* The target entity type for this display mode.
*
* @return $this
*/
public function setTargetType($target_entity_type);
}
Function Calls
None |
Stats
MD5 | 822ff557e9f14e74ac88f2f67b7256ee |
Eval Count | 0 |
Decode Time | 90 ms |