config objets par page
This commit is contained in:
parent
9630f093cd
commit
df778fbee1
@ -146,13 +146,6 @@ class config extends common {
|
|||||||
'Pacific/Fiji' => '(GMT+12:00) Fiji',
|
'Pacific/Fiji' => '(GMT+12:00) Fiji',
|
||||||
'Asia/Kamchatka' => '(GMT+12:00) Kamchatka'
|
'Asia/Kamchatka' => '(GMT+12:00) Kamchatka'
|
||||||
];
|
];
|
||||||
// Nombre d'objets par page
|
|
||||||
public static $ItemsList = [
|
|
||||||
5 => '5 articles',
|
|
||||||
10 => '10 articles',
|
|
||||||
15 => '15 articles',
|
|
||||||
20 => '20 articles'
|
|
||||||
];
|
|
||||||
// Type de proxy
|
// Type de proxy
|
||||||
public static $proxyType = [
|
public static $proxyType = [
|
||||||
'tcp://' => 'TCP',
|
'tcp://' => 'TCP',
|
||||||
@ -457,7 +450,6 @@ class config extends common {
|
|||||||
'githubId' => $this->getInput('configAdvancedSocialGithubId')
|
'githubId' => $this->getInput('configAdvancedSocialGithubId')
|
||||||
],
|
],
|
||||||
'timezone' => $this->getInput('configAdvancedTimezone', helper::FILTER_STRING_SHORT, true),
|
'timezone' => $this->getInput('configAdvancedTimezone', helper::FILTER_STRING_SHORT, true),
|
||||||
'itemsperPage' => $this->getInput('configAdvancedItemsperPage', helper::FILTER_INT,true),
|
|
||||||
'autoUpdate' => $this->getInput('configAdvancedAutoUpdate', helper::FILTER_BOOLEAN),
|
'autoUpdate' => $this->getInput('configAdvancedAutoUpdate', helper::FILTER_BOOLEAN),
|
||||||
'autoUpdateHtaccess' => $this->getInput('configAdvancedAutoUpdateHtaccess', helper::FILTER_BOOLEAN),
|
'autoUpdateHtaccess' => $this->getInput('configAdvancedAutoUpdateHtaccess', helper::FILTER_BOOLEAN),
|
||||||
'proxyType' => $this->getInput('configAdvancedProxyType'),
|
'proxyType' => $this->getInput('configAdvancedProxyType'),
|
||||||
|
@ -60,15 +60,6 @@
|
|||||||
'value' => $this->getData(['config', 'faviconDark'])
|
'value' => $this->getData(['config', 'faviconDark'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('configAdvancedItemsperPage', $module::$ItemsList, [
|
|
||||||
'label' => 'Articles par page',
|
|
||||||
'selected' => $this->getData(['config', 'itemsperPage']),
|
|
||||||
'help' => 'Modules Blog et News'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col4">
|
<div class="col4">
|
||||||
<?php echo template::select('configAdvancedTimezone', $module::$timezones, [
|
<?php echo template::select('configAdvancedTimezone', $module::$timezones, [
|
||||||
'label' => 'Fuseau horaire',
|
'label' => 'Fuseau horaire',
|
||||||
@ -76,12 +67,14 @@
|
|||||||
'help' => 'Le fuseau horaire est utile au bon référencement'
|
'help' => 'Le fuseau horaire est utile au bon référencement'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4 verticalAlignBottom">
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
<?php echo template::checkbox('configAdvancedCookieConsent', true, 'Consentement aux cookies', [
|
<?php echo template::checkbox('configAdvancedCookieConsent', true, 'Consentement aux cookies', [
|
||||||
'checked' => $this->getData(['config', 'cookieConsent'])
|
'checked' => $this->getData(['config', 'cookieConsent'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col4 verticalAlignBottom">
|
<div class="col6">
|
||||||
<?php echo template::checkbox('configAdvancedCaptchaStrong', true, 'Captcha renforcé', [
|
<?php echo template::checkbox('configAdvancedCaptchaStrong', true, 'Captcha renforcé', [
|
||||||
'checked' => $this->getData(['config','captchaStrong']),
|
'checked' => $this->getData(['config','captchaStrong']),
|
||||||
'help' => 'Option recommandée pour sécuriser la connexion. S\'applique à tous les captchas du site. Le captcha simple se limite à une addition de nombres de 0 à 10. Le captcha renforcé utilise quatre opérations de nombres de 0 à 20.'
|
'help' => 'Option recommandée pour sécuriser la connexion. S\'applique à tous les captchas du site. Le captcha simple se limite à une addition de nombres de 0 à 10. Le captcha renforcé utilise quatre opérations de nombres de 0 à 20.'
|
||||||
|
Loading…
Reference in New Issue
Block a user