1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/config/former.php

209 lines
6.4 KiB
PHP
Raw Normal View History

<?php
return [
2019-07-29 05:59:28 +02:00
// 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'],
],
2019-07-29 05:59:28 +02:00
];