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\Form; /** * Defines the behavior a confirmation form. */ i..
Decoded Output download
<?php
namespace Drupal\Core\Form;
/**
* Defines the behavior a confirmation form.
*/
interface ConfirmFormInterface extends FormInterface {
/**
* Returns the question to ask the user.
*
* @return string
* The form question. The page title will be set to this value.
*/
public function getQuestion();
/**
* Returns the route to go to if the user cancels the action.
*
* @return \Drupal\Core\Url
* A URL object.
*/
public function getCancelUrl();
/**
* Returns additional text to display as a description.
*
* @return string
* The form description.
*/
public function getDescription();
/**
* Returns a caption for the button that confirms the action.
*
* @return string
* The form confirmation text.
*/
public function getConfirmText();
/**
* Returns a caption for the link which cancels the action.
*
* @return string
* The form cancellation text.
*/
public function getCancelText();
/**
* Returns the internal name used to refer to the confirmation item.
*
* @return string
* The internal form name.
*/
public function getFormName();
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Form;
/**
* Defines the behavior a confirmation form.
*/
interface ConfirmFormInterface extends FormInterface {
/**
* Returns the question to ask the user.
*
* @return string
* The form question. The page title will be set to this value.
*/
public function getQuestion();
/**
* Returns the route to go to if the user cancels the action.
*
* @return \Drupal\Core\Url
* A URL object.
*/
public function getCancelUrl();
/**
* Returns additional text to display as a description.
*
* @return string
* The form description.
*/
public function getDescription();
/**
* Returns a caption for the button that confirms the action.
*
* @return string
* The form confirmation text.
*/
public function getConfirmText();
/**
* Returns a caption for the link which cancels the action.
*
* @return string
* The form cancellation text.
*/
public function getCancelText();
/**
* Returns the internal name used to refer to the confirmation item.
*
* @return string
* The internal form name.
*/
public function getFormName();
}
Function Calls
None |
Stats
MD5 | 4d8a7f8ffef3de17dc3931301fe059ec |
Eval Count | 0 |
Decode Time | 84 ms |