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 return [ // Markup ///////////////////////////////////////////////////////..
Decoded Output download
<?php
return [
// Markup
////////////////////////////////////////////////////////////////////
// Whether labels should be automatically computed from name
'automatic_label' => true,
// The default form type
'default_form_type' => 'horizontal',
// Validation
////////////////////////////////////////////////////////////////////
// Whether Former should fetch errors from Session
'fetch_errors' => true,
// Whether Former should try to apply Validator rules as attributes
'live_validation' => true,
// Whether Former should automatically fetch error messages and
// display them next to the matching fields
'error_messages' => true,
// Checkables
////////////////////////////////////////////////////////////////////
// Whether checkboxes should always be present in the POST data,
// no matter if you checked them or not
'push_checkboxes' => false,
// The value a checkbox will have in the POST array if unchecked
'unchecked_value' => 0,
// Required fields
////////////////////////////////////////////////////////////////////
// The class to be added to required fields
'required_class' => 'required',
// A facultative text to append to the labels of required fields
'required_text' => '<sup>*</sup>',
// Translations
////////////////////////////////////////////////////////////////////
// Where Former should look for translations
'translate_from' => 'validation.attributes',
// Whether text that comes out of the translated
// should be capitalized (ex: email => Email) automatically
'capitalize_translations' => true,
// An array of attributes to automatically translate
'translatable' => [
'help',
'inlineHelp',
'blockHelp',
'placeholder',
'data_placeholder',
'label',
],
// Framework
////////////////////////////////////////////////////////////////////
// The framework to be used by Former
'framework' => 'TwitterBootstrap4',
'TwitterBootstrap4' => [
// Map Former-supported viewports to Bootstrap 4 equivalents
'viewports' => [
'large' => 'lg',
'medium' => 'md',
'small' => 'sm',
'mini' => 'xs',
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'large' => 2,
'small' => 4,
],
// HTML markup and classes used by Bootstrap 5 for icons
'icon' => [
'tag' => 'i',
'set' => 'fa',
'prefix' => 'fa',
],
],
'TwitterBootstrap3' => [
// Map Former-supported viewports to Bootstrap 3 equivalents
'viewports' => [
'large' => 'lg',
'medium' => 'md',
'small' => 'sm',
'mini' => 'xs',
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'large' => 2,
'small' => 4,
],
// HTML markup and classes used by Bootstrap 3 for icons
'icon' => [
'tag' => 'span',
'set' => 'glyphicon',
'prefix' => 'glyphicon',
],
],
'Nude' => [ // No-framework markup
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'icon',
],
],
'TwitterBootstrap' => [ // Twitter Bootstrap version 2
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'icon',
],
],
'ZurbFoundation5' => [
// Map Former-supported viewports to Foundation 5 equivalents
'viewports' => [
'large' => 'large',
'medium' => null,
'small' => 'small',
'mini' => null,
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'small' => 3,
],
// Classes to be applied to wrapped labels in horizontal forms
'wrappedLabelClasses' => ['right', 'inline'],
// HTML markup and classes used by Foundation 5 for icons
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'fi',
],
// CSS for inline validation errors
'error_classes' => ['class' => 'error'],
],
'ZurbFoundation4' => [
// Foundation 4 also has an experimental "medium" breakpoint
// explained at http://foundation.zurb.com/docs/components/grid.html
'viewports' => [
'large' => 'large',
'medium' => null,
'small' => 'small',
'mini' => null,
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'small' => 3,
],
// Classes to be applied to wrapped labels in horizontal forms
'wrappedLabelClasses' => ['right', 'inline'],
// HTML markup and classes used by Foundation 4 for icons
'icon' => [
'tag' => 'i',
'set' => 'general',
'prefix' => 'foundicon',
],
// CSS for inline validation errors
'error_classes' => ['class' => 'alert-box radius warning'],
],
'ZurbFoundation' => [ // Foundation 3
'viewports' => [
'large' => '',
'medium' => null,
'small' => 'mobile-',
'mini' => null,
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'large' => 2,
'small' => 4,
],
// Classes to be applied to wrapped labels in horizontal forms
'wrappedLabelClasses' => ['right', 'inline'],
// HTML markup and classes used by Foundation 3 for icons
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'fi',
],
// CSS for inline validation errors
// should work for Zurb 2 and 3
'error_classes' => ['class' => 'alert-box alert error'],
],
];
?>
Did this file decode correctly?
Original Code
<?php
return [
// Markup
////////////////////////////////////////////////////////////////////
// Whether labels should be automatically computed from name
'automatic_label' => true,
// The default form type
'default_form_type' => 'horizontal',
// Validation
////////////////////////////////////////////////////////////////////
// Whether Former should fetch errors from Session
'fetch_errors' => true,
// Whether Former should try to apply Validator rules as attributes
'live_validation' => true,
// Whether Former should automatically fetch error messages and
// display them next to the matching fields
'error_messages' => true,
// Checkables
////////////////////////////////////////////////////////////////////
// Whether checkboxes should always be present in the POST data,
// no matter if you checked them or not
'push_checkboxes' => false,
// The value a checkbox will have in the POST array if unchecked
'unchecked_value' => 0,
// Required fields
////////////////////////////////////////////////////////////////////
// The class to be added to required fields
'required_class' => 'required',
// A facultative text to append to the labels of required fields
'required_text' => '<sup>*</sup>',
// Translations
////////////////////////////////////////////////////////////////////
// Where Former should look for translations
'translate_from' => 'validation.attributes',
// Whether text that comes out of the translated
// should be capitalized (ex: email => Email) automatically
'capitalize_translations' => true,
// An array of attributes to automatically translate
'translatable' => [
'help',
'inlineHelp',
'blockHelp',
'placeholder',
'data_placeholder',
'label',
],
// Framework
////////////////////////////////////////////////////////////////////
// The framework to be used by Former
'framework' => 'TwitterBootstrap4',
'TwitterBootstrap4' => [
// Map Former-supported viewports to Bootstrap 4 equivalents
'viewports' => [
'large' => 'lg',
'medium' => 'md',
'small' => 'sm',
'mini' => 'xs',
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'large' => 2,
'small' => 4,
],
// HTML markup and classes used by Bootstrap 5 for icons
'icon' => [
'tag' => 'i',
'set' => 'fa',
'prefix' => 'fa',
],
],
'TwitterBootstrap3' => [
// Map Former-supported viewports to Bootstrap 3 equivalents
'viewports' => [
'large' => 'lg',
'medium' => 'md',
'small' => 'sm',
'mini' => 'xs',
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'large' => 2,
'small' => 4,
],
// HTML markup and classes used by Bootstrap 3 for icons
'icon' => [
'tag' => 'span',
'set' => 'glyphicon',
'prefix' => 'glyphicon',
],
],
'Nude' => [ // No-framework markup
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'icon',
],
],
'TwitterBootstrap' => [ // Twitter Bootstrap version 2
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'icon',
],
],
'ZurbFoundation5' => [
// Map Former-supported viewports to Foundation 5 equivalents
'viewports' => [
'large' => 'large',
'medium' => null,
'small' => 'small',
'mini' => null,
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'small' => 3,
],
// Classes to be applied to wrapped labels in horizontal forms
'wrappedLabelClasses' => ['right', 'inline'],
// HTML markup and classes used by Foundation 5 for icons
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'fi',
],
// CSS for inline validation errors
'error_classes' => ['class' => 'error'],
],
'ZurbFoundation4' => [
// Foundation 4 also has an experimental "medium" breakpoint
// explained at http://foundation.zurb.com/docs/components/grid.html
'viewports' => [
'large' => 'large',
'medium' => null,
'small' => 'small',
'mini' => null,
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'small' => 3,
],
// Classes to be applied to wrapped labels in horizontal forms
'wrappedLabelClasses' => ['right', 'inline'],
// HTML markup and classes used by Foundation 4 for icons
'icon' => [
'tag' => 'i',
'set' => 'general',
'prefix' => 'foundicon',
],
// CSS for inline validation errors
'error_classes' => ['class' => 'alert-box radius warning'],
],
'ZurbFoundation' => [ // Foundation 3
'viewports' => [
'large' => '',
'medium' => null,
'small' => 'mobile-',
'mini' => null,
],
// Width of labels for horizontal forms expressed as viewport => grid columns
'labelWidths' => [
'large' => 2,
'small' => 4,
],
// Classes to be applied to wrapped labels in horizontal forms
'wrappedLabelClasses' => ['right', 'inline'],
// HTML markup and classes used by Foundation 3 for icons
'icon' => [
'tag' => 'i',
'set' => null,
'prefix' => 'fi',
],
// CSS for inline validation errors
// should work for Zurb 2 and 3
'error_classes' => ['class' => 'alert-box alert error'],
],
];
Function Calls
None |
Stats
MD5 | 6f7cb2ff5143a01eed3fff4686521adb |
Eval Count | 0 |
Decode Time | 81 ms |