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_content; use Drupal\Core\Entity\Sql\SqlContentEntityStorage..
Decoded Output download
<?php
namespace Drupallock_content;
use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
/**
* Defines the block content schema handler.
*/
class BlockContentStorageSchema extends SqlContentEntityStorageSchema {
/**
* {@inheritdoc}
*/
protected function getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition, $table_name, array $column_mapping): array {
$schema = parent::getSharedTableFieldSchema($storage_definition, $table_name, $column_mapping);
$field_name = $storage_definition->getName();
if ($table_name === $this->storage->getDataTable() && $field_name === 'reusable') {
$this->addSharedTableFieldIndex($storage_definition, $schema);
}
return $schema;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\block_content;
use Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
/**
* Defines the block content schema handler.
*/
class BlockContentStorageSchema extends SqlContentEntityStorageSchema {
/**
* {@inheritdoc}
*/
protected function getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition, $table_name, array $column_mapping): array {
$schema = parent::getSharedTableFieldSchema($storage_definition, $table_name, $column_mapping);
$field_name = $storage_definition->getName();
if ($table_name === $this->storage->getDataTable() && $field_name === 'reusable') {
$this->addSharedTableFieldIndex($storage_definition, $schema);
}
return $schema;
}
}
Function Calls
None |
Stats
MD5 | 39229cc1cbcd041fe65fcffa03d5ce3b |
Eval Count | 0 |
Decode Time | 91 ms |