This commit is contained in:
Jean-Christian Paul Denis 2023-11-04 15:09:16 +01:00
parent f38c7328a9
commit 63f54ad065
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
8 changed files with 14 additions and 14 deletions

View File

@ -122,7 +122,7 @@ class BackendBehaviors
->for('kutrl_create_custom'),
(new Input('kutrl_create_custom'))
->size(32)
->maxlenght(32)
->maxlength(32)
->class('maximal')
->value(''),
]);

View File

@ -163,7 +163,7 @@ class Manage extends Process
->for('custom'),
(new Input('custom'))
->size(50)
->maxlenght(32)
->maxlength(32)
->value(''),
]);
$fields[] = (new Note())
@ -190,7 +190,7 @@ class Manage extends Process
->for('str'),
(new Input('str'))
->size(100)
->maxlenght(255)
->maxlength(255)
->value(''),
]),
... $fields,

View File

@ -61,7 +61,7 @@ class ServiceBilbolinks extends Service
->for('kutrl_srv_bilbolinks_base'),
(new Input('kutrl_srv_bilbolinks_base'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $this->settings->get('srv_bilbolinks_base')),
]),
(new Note())

View File

@ -58,7 +58,7 @@ class ServiceBitly extends Service
->for('kutrl_srv_bitly_apikey'),
(new Input('kutrl_srv_bitly_apikey'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $this->settings->get('srv_bitly_apikey')),
]),
(new Note())

View File

@ -83,7 +83,7 @@ class ServiceCustom extends Service
->for('kutrl_srv_custom_url_api'),
(new Input('kutrl_srv_custom_url_api'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $config['url_api']),
]),
(new Note())
@ -95,7 +95,7 @@ class ServiceCustom extends Service
->for('kutrl_srv_custom_url_base'),
(new Input('kutrl_srv_custom_url_base'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $config['url_base']),
]),
(new Note())
@ -107,7 +107,7 @@ class ServiceCustom extends Service
->for('kutrl_srv_custom_url_param'),
(new Input('kutrl_srv_custom_url_param'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $config['url_param']),
]),
(new Note())

View File

@ -69,7 +69,7 @@ class ServiceLocal extends Service
->for('kutrl_srv_local_protocols'),
(new Input('kutrl_srv_local_protocols'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $this->settings->get('srv_local_protocols')),
]),
(new Note())

View File

@ -65,7 +65,7 @@ class ServiceYourls extends Service
->for('kutrl_srv_yourls_base'),
(new Input('kutrl_srv_yourls_base'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $this->settings->get('srv_yourls_base')),
(new Note())
->class('form-note')
@ -77,7 +77,7 @@ class ServiceYourls extends Service
->for('kutrl_srv_yourls_username'),
(new Input('kutrl_srv_yourls_username'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $this->settings->get('srv_yourls_username')),
(new Note())
->class('form-note')
@ -89,7 +89,7 @@ class ServiceYourls extends Service
->for('kutrl_srv_yourls_password'),
(new Input('kutrl_srv_yourls_password'))
->size(50)
->maxlenght(255)
->maxlength(255)
->value((string) $this->settings->get('srv_yourls_password')),
(new Note())
->class('form-note')

View File

@ -145,7 +145,7 @@ class Widgets
->for('longurl'),
(new Input('longurl'))
->size(20)
->maxlenght(255)
->maxlength(255)
->value(''),
]),
(new Para())
@ -154,7 +154,7 @@ class Widgets
->for('hmf'),
(new Input('hmf'))
->size(20)
->maxlenght(255)
->maxlength(255)
->value(''),
]),
(new Para())