Compare commits
No commits in common. "c403444100f6a83a8eca48ff766bb161fa5e2cba" and "8da1d0fbc6a55bba7875422e1585cbecd414fe0b" have entirely different histories.
c403444100
...
8da1d0fbc6
|
@ -5,7 +5,7 @@
|
||||||
<version>1.4</version>
|
<version>1.4</version>
|
||||||
<author>Jean-Christian Denis and Contributors</author>
|
<author>Jean-Christian Denis and Contributors</author>
|
||||||
<desc>Add RSS/Atom feeds after entries content</desc>
|
<desc>Add RSS/Atom feeds after entries content</desc>
|
||||||
<file>https://git.dotclear.watch/JcDenis/fac/releases/download/v1.4/plugin-fac.zip</file>
|
<file>https://github.com/JcDenis/fac/releases/download/v1.4/plugin-fac.zip</file>
|
||||||
<da:dcmin>2.27</da:dcmin>
|
<da:dcmin>2.27</da:dcmin>
|
||||||
<da:details>https://git.dotclear.watch/JcDenis/fac/src/branch/master/README.md</da:details>
|
<da:details>https://git.dotclear.watch/JcDenis/fac/src/branch/master/README.md</da:details>
|
||||||
<da:support>https://git.dotclear.watch/JcDenis/fac/issues</da:support>
|
<da:support>https://git.dotclear.watch/JcDenis/fac/issues</da:support>
|
||||||
|
|
|
@ -114,7 +114,7 @@ class BackendBehaviors
|
||||||
// defaultfeedtitle
|
// defaultfeedtitle
|
||||||
(new Para())->items([
|
(new Para())->items([
|
||||||
(new Label(__('Default title')))->for('fac_defaultfeedtitle'),
|
(new Label(__('Default title')))->for('fac_defaultfeedtitle'),
|
||||||
(new Input('fac_defaultfeedtitle'))->size(70)->maxlength(255)->value((string) $blog_settings->get(My::id())->get('defaultfeedtitle')),
|
(new Input('fac_defaultfeedtitle'))->size(70)->maxlenght(255)->value((string) $blog_settings->get(My::id())->get('defaultfeedtitle')),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('Use %T to insert title of feed.'))->class('form-note'),
|
(new Note())->text(__('Use %T to insert title of feed.'))->class('form-note'),
|
||||||
// showfeeddesc
|
// showfeeddesc
|
||||||
|
@ -354,7 +354,7 @@ class BackendBehaviors
|
||||||
// fac_url
|
// fac_url
|
||||||
(new Para())->items([
|
(new Para())->items([
|
||||||
(new Label(__('Feed URL:')))->for('fac_url')->class('required'),
|
(new Label(__('Feed URL:')))->for('fac_url')->class('required'),
|
||||||
(new Input('fac_url'))->size(60)->maxlength(255)->value($url),
|
(new Input('fac_url'))->size(60)->maxlenght(255)->value($url),
|
||||||
]),
|
]),
|
||||||
// fac_format
|
// fac_format
|
||||||
(new Para())->items([
|
(new Para())->items([
|
||||||
|
|
|
@ -182,7 +182,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][name]',
|
'fac_formats[' . $uid . '][name]',
|
||||||
'fac_formats_' . $uid . '_name',
|
'fac_formats_' . $uid . '_name',
|
||||||
]))->value(empty($format['name']) ? '' : $format['name'])->size(20)->maxlength(255)->class('maximal'),
|
]))->value(empty($format['name']) ? '' : $format['name'])->size(20)->maxlenght(255)->class('maximal'),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('In order to remove a format, leave its name empty.'))->class('form-note'),
|
(new Note())->text(__('In order to remove a format, leave its name empty.'))->class('form-note'),
|
||||||
// dateformat
|
// dateformat
|
||||||
|
@ -191,7 +191,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][dateformat]',
|
'fac_formats[' . $uid . '][dateformat]',
|
||||||
'fac_formats_' . $uid . '_dateformat',
|
'fac_formats_' . $uid . '_dateformat',
|
||||||
]))->value(empty($format['dateformat']) ? '' : $format['dateformat'])->size(20)->maxlength(255)->class('maximal'),
|
]))->value(empty($format['dateformat']) ? '' : $format['dateformat'])->size(20)->maxlenght(255)->class('maximal'),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('Use date format of Dotclear or leave empty to use default date format of blog.'))->class('form-note'),
|
(new Note())->text(__('Use date format of Dotclear or leave empty to use default date format of blog.'))->class('form-note'),
|
||||||
// dateformat //todo: use Number
|
// dateformat //todo: use Number
|
||||||
|
@ -200,7 +200,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][lineslimit]',
|
'fac_formats[' . $uid . '][lineslimit]',
|
||||||
'fac_formats_' . $uid . '_lineslimit',
|
'fac_formats_' . $uid . '_lineslimit',
|
||||||
]))->value(empty($format['lineslimit']) ? '' : $format['lineslimit'])->size(4)->maxlength(5),
|
]))->value(empty($format['lineslimit']) ? '' : $format['lineslimit'])->size(4)->maxlenght(5),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
||||||
]),
|
]),
|
||||||
|
@ -212,7 +212,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][linestitletext]',
|
'fac_formats[' . $uid . '][linestitletext]',
|
||||||
'fac_formats_' . $uid . '_linestitletext',
|
'fac_formats_' . $uid . '_linestitletext',
|
||||||
]))->value(empty($format['linestitletext']) ? '' : $format['linestitletext'])->size(20)->maxlength(255)->class('maximal'),
|
]))->value(empty($format['linestitletext']) ? '' : $format['linestitletext'])->size(20)->maxlenght(255)->class('maximal'),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(
|
(new Note())->text(
|
||||||
__('Format can be:') .
|
__('Format can be:') .
|
||||||
|
@ -228,7 +228,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][linestitleover]',
|
'fac_formats[' . $uid . '][linestitleover]',
|
||||||
'fac_formats_' . $uid . '_linestitleover',
|
'fac_formats_' . $uid . '_linestitleover',
|
||||||
]))->value(empty($format['linestitleover']) ? '' : $format['linestitleover'])->size(20)->maxlength(255)->class('maximal'),
|
]))->value(empty($format['linestitleover']) ? '' : $format['linestitleover'])->size(20)->maxlenght(255)->class('maximal'),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(
|
(new Note())->text(
|
||||||
__('Format can be:') .
|
__('Format can be:') .
|
||||||
|
@ -244,7 +244,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][linestitlelength]',
|
'fac_formats[' . $uid . '][linestitlelength]',
|
||||||
'fac_formats_' . $uid . '_linestitlelength',
|
'fac_formats_' . $uid . '_linestitlelength',
|
||||||
]))->value(empty($format['linestitlelength']) ? '' : $format['linestitlelength'])->size(4)->maxlength(5),
|
]))->value(empty($format['linestitlelength']) ? '' : $format['linestitlelength'])->size(4)->maxlenght(5),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
||||||
]),
|
]),
|
||||||
|
@ -272,7 +272,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][linesdescriptionlength]',
|
'fac_formats[' . $uid . '][linesdescriptionlength]',
|
||||||
'fac_formats_' . $uid . '_linesdescriptionlength',
|
'fac_formats_' . $uid . '_linesdescriptionlength',
|
||||||
]))->value(empty($format['linesdescriptionlength']) ? '' : $format['linesdescriptionlength'])->size(4)->maxlength(5),
|
]))->value(empty($format['linesdescriptionlength']) ? '' : $format['linesdescriptionlength'])->size(4)->maxlenght(5),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
||||||
]),
|
]),
|
||||||
|
@ -300,7 +300,7 @@ class Config extends Process
|
||||||
(new Input([
|
(new Input([
|
||||||
'fac_formats[' . $uid . '][linescontentlength]',
|
'fac_formats[' . $uid . '][linescontentlength]',
|
||||||
'fac_formats_' . $uid . '_linescontentlength',
|
'fac_formats_' . $uid . '_linescontentlength',
|
||||||
]))->value(empty($format['linescontentlength']) ? '' : $format['linescontentlength'])->size(4)->maxlength(5),
|
]))->value(empty($format['linescontentlength']) ? '' : $format['linescontentlength'])->size(4)->maxlenght(5),
|
||||||
]),
|
]),
|
||||||
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
(new Note())->text(__('Leave lengh empty for no limit.'))->class('form-note'),
|
||||||
]),
|
]),
|
||||||
|
|
Loading…
Reference in New Issue