fix typo
This commit is contained in:
parent
f38c7328a9
commit
63f54ad065
@ -122,7 +122,7 @@ class BackendBehaviors
|
|||||||
->for('kutrl_create_custom'),
|
->for('kutrl_create_custom'),
|
||||||
(new Input('kutrl_create_custom'))
|
(new Input('kutrl_create_custom'))
|
||||||
->size(32)
|
->size(32)
|
||||||
->maxlenght(32)
|
->maxlength(32)
|
||||||
->class('maximal')
|
->class('maximal')
|
||||||
->value(''),
|
->value(''),
|
||||||
]);
|
]);
|
||||||
|
@ -163,7 +163,7 @@ class Manage extends Process
|
|||||||
->for('custom'),
|
->for('custom'),
|
||||||
(new Input('custom'))
|
(new Input('custom'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(32)
|
->maxlength(32)
|
||||||
->value(''),
|
->value(''),
|
||||||
]);
|
]);
|
||||||
$fields[] = (new Note())
|
$fields[] = (new Note())
|
||||||
@ -190,7 +190,7 @@ class Manage extends Process
|
|||||||
->for('str'),
|
->for('str'),
|
||||||
(new Input('str'))
|
(new Input('str'))
|
||||||
->size(100)
|
->size(100)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value(''),
|
->value(''),
|
||||||
]),
|
]),
|
||||||
... $fields,
|
... $fields,
|
||||||
|
@ -61,7 +61,7 @@ class ServiceBilbolinks extends Service
|
|||||||
->for('kutrl_srv_bilbolinks_base'),
|
->for('kutrl_srv_bilbolinks_base'),
|
||||||
(new Input('kutrl_srv_bilbolinks_base'))
|
(new Input('kutrl_srv_bilbolinks_base'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $this->settings->get('srv_bilbolinks_base')),
|
->value((string) $this->settings->get('srv_bilbolinks_base')),
|
||||||
]),
|
]),
|
||||||
(new Note())
|
(new Note())
|
||||||
|
@ -58,7 +58,7 @@ class ServiceBitly extends Service
|
|||||||
->for('kutrl_srv_bitly_apikey'),
|
->for('kutrl_srv_bitly_apikey'),
|
||||||
(new Input('kutrl_srv_bitly_apikey'))
|
(new Input('kutrl_srv_bitly_apikey'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $this->settings->get('srv_bitly_apikey')),
|
->value((string) $this->settings->get('srv_bitly_apikey')),
|
||||||
]),
|
]),
|
||||||
(new Note())
|
(new Note())
|
||||||
|
@ -83,7 +83,7 @@ class ServiceCustom extends Service
|
|||||||
->for('kutrl_srv_custom_url_api'),
|
->for('kutrl_srv_custom_url_api'),
|
||||||
(new Input('kutrl_srv_custom_url_api'))
|
(new Input('kutrl_srv_custom_url_api'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $config['url_api']),
|
->value((string) $config['url_api']),
|
||||||
]),
|
]),
|
||||||
(new Note())
|
(new Note())
|
||||||
@ -95,7 +95,7 @@ class ServiceCustom extends Service
|
|||||||
->for('kutrl_srv_custom_url_base'),
|
->for('kutrl_srv_custom_url_base'),
|
||||||
(new Input('kutrl_srv_custom_url_base'))
|
(new Input('kutrl_srv_custom_url_base'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $config['url_base']),
|
->value((string) $config['url_base']),
|
||||||
]),
|
]),
|
||||||
(new Note())
|
(new Note())
|
||||||
@ -107,7 +107,7 @@ class ServiceCustom extends Service
|
|||||||
->for('kutrl_srv_custom_url_param'),
|
->for('kutrl_srv_custom_url_param'),
|
||||||
(new Input('kutrl_srv_custom_url_param'))
|
(new Input('kutrl_srv_custom_url_param'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $config['url_param']),
|
->value((string) $config['url_param']),
|
||||||
]),
|
]),
|
||||||
(new Note())
|
(new Note())
|
||||||
|
@ -69,7 +69,7 @@ class ServiceLocal extends Service
|
|||||||
->for('kutrl_srv_local_protocols'),
|
->for('kutrl_srv_local_protocols'),
|
||||||
(new Input('kutrl_srv_local_protocols'))
|
(new Input('kutrl_srv_local_protocols'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $this->settings->get('srv_local_protocols')),
|
->value((string) $this->settings->get('srv_local_protocols')),
|
||||||
]),
|
]),
|
||||||
(new Note())
|
(new Note())
|
||||||
|
@ -65,7 +65,7 @@ class ServiceYourls extends Service
|
|||||||
->for('kutrl_srv_yourls_base'),
|
->for('kutrl_srv_yourls_base'),
|
||||||
(new Input('kutrl_srv_yourls_base'))
|
(new Input('kutrl_srv_yourls_base'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $this->settings->get('srv_yourls_base')),
|
->value((string) $this->settings->get('srv_yourls_base')),
|
||||||
(new Note())
|
(new Note())
|
||||||
->class('form-note')
|
->class('form-note')
|
||||||
@ -77,7 +77,7 @@ class ServiceYourls extends Service
|
|||||||
->for('kutrl_srv_yourls_username'),
|
->for('kutrl_srv_yourls_username'),
|
||||||
(new Input('kutrl_srv_yourls_username'))
|
(new Input('kutrl_srv_yourls_username'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $this->settings->get('srv_yourls_username')),
|
->value((string) $this->settings->get('srv_yourls_username')),
|
||||||
(new Note())
|
(new Note())
|
||||||
->class('form-note')
|
->class('form-note')
|
||||||
@ -89,7 +89,7 @@ class ServiceYourls extends Service
|
|||||||
->for('kutrl_srv_yourls_password'),
|
->for('kutrl_srv_yourls_password'),
|
||||||
(new Input('kutrl_srv_yourls_password'))
|
(new Input('kutrl_srv_yourls_password'))
|
||||||
->size(50)
|
->size(50)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value((string) $this->settings->get('srv_yourls_password')),
|
->value((string) $this->settings->get('srv_yourls_password')),
|
||||||
(new Note())
|
(new Note())
|
||||||
->class('form-note')
|
->class('form-note')
|
||||||
|
@ -145,7 +145,7 @@ class Widgets
|
|||||||
->for('longurl'),
|
->for('longurl'),
|
||||||
(new Input('longurl'))
|
(new Input('longurl'))
|
||||||
->size(20)
|
->size(20)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value(''),
|
->value(''),
|
||||||
]),
|
]),
|
||||||
(new Para())
|
(new Para())
|
||||||
@ -154,7 +154,7 @@ class Widgets
|
|||||||
->for('hmf'),
|
->for('hmf'),
|
||||||
(new Input('hmf'))
|
(new Input('hmf'))
|
||||||
->size(20)
|
->size(20)
|
||||||
->maxlenght(255)
|
->maxlength(255)
|
||||||
->value(''),
|
->value(''),
|
||||||
]),
|
]),
|
||||||
(new Para())
|
(new Para())
|
||||||
|
Loading…
Reference in New Issue
Block a user