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 final class HeraldNewObjectField extends HeraldField { const FIELDCONST = 'new-o..
Decoded Output download
<?php
final class HeraldNewObjectField extends HeraldField {
const FIELDCONST = 'new-object';
public function getHeraldFieldName() {
return pht('Is newly created');
}
public function getFieldGroupKey() {
return HeraldEditFieldGroup::FIELDGROUPKEY;
}
public function supportsObject($object) {
return !$this->getAdapter()->isSingleEventAdapter();
}
public function getHeraldFieldValue($object) {
return $this->getAdapter()->getIsNewObject();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_BOOL;
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class HeraldNewObjectField extends HeraldField {
const FIELDCONST = 'new-object';
public function getHeraldFieldName() {
return pht('Is newly created');
}
public function getFieldGroupKey() {
return HeraldEditFieldGroup::FIELDGROUPKEY;
}
public function supportsObject($object) {
return !$this->getAdapter()->isSingleEventAdapter();
}
public function getHeraldFieldValue($object) {
return $this->getAdapter()->getIsNewObject();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_BOOL;
}
}
Function Calls
None |
Stats
MD5 | 07def6e17d3a7191489d53e9d4339222 |
Eval Count | 0 |
Decode Time | 115 ms |