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\Config; use Symfony\Component\EventDispatcher\Event; /** *..
Decoded Output download
<?php
namespace Drupal\Core\Config;
use Symfony\Component\EventDispatcher\Event;
/**
* Wraps a configuration event for event listeners.
*/
class ConfigCrudEvent extends Event {
/**
* Configuration object.
*
* @var \Drupal\Core\Config\Config
*/
protected $config;
/**
* Constructs a configuration event object.
*
* @param \Drupal\Core\Config\Config $config
* Configuration object.
*/
public function __construct(Config $config) {
$this->config = $config;
}
/**
* Gets configuration object.
*
* @return \Drupal\Core\Config\Config
* The configuration object that caused the event to fire.
*/
public function getConfig() {
return $this->config;
}
/**
* Checks to see if the provided configuration key's value has changed.
*
* @param string $key
* The configuration key to check if it has changed.
*
* @return bool
*/
public function isChanged($key) {
return $this->config->get($key) !== $this->config->getOriginal($key);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Config;
use Symfony\Component\EventDispatcher\Event;
/**
* Wraps a configuration event for event listeners.
*/
class ConfigCrudEvent extends Event {
/**
* Configuration object.
*
* @var \Drupal\Core\Config\Config
*/
protected $config;
/**
* Constructs a configuration event object.
*
* @param \Drupal\Core\Config\Config $config
* Configuration object.
*/
public function __construct(Config $config) {
$this->config = $config;
}
/**
* Gets configuration object.
*
* @return \Drupal\Core\Config\Config
* The configuration object that caused the event to fire.
*/
public function getConfig() {
return $this->config;
}
/**
* Checks to see if the provided configuration key's value has changed.
*
* @param string $key
* The configuration key to check if it has changed.
*
* @return bool
*/
public function isChanged($key) {
return $this->config->get($key) !== $this->config->getOriginal($key);
}
}
Function Calls
| None |
Stats
| MD5 | 0f23bffebbaf3eef176c6f8c3a81f246 |
| Eval Count | 0 |
| Decode Time | 77 ms |