PluginProbe
Metricool – Social media and site statistics / 2.0.2
Metricool – Social media and site statistics v2.0.2
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / config / user_settings.php

user_settings.php in Metricool – Social media and site statistics 2.0.2, at config/user_settings.php

65 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 return [
4 'fields' => [
5 'blogId' => [
6 'storage' => 'default',
7 ],
8 'name' => [
9 'section' => 'personal',
10 'storage' => 'metricool',
11 'validators' => ['required'],
12 ],
13 'lastName' => [
14 'section' => 'personal',
15 'storage' => 'metricool',
16 ],
17 'language' => [
18 'section' => 'preferences',
19 'storage' => 'metricool',
20 'validators' => ['supportedLanguage'],
21 ],
22 'timezone' => [
23 'section' => 'preferences',
24 'storage' => 'metricool',
25 'validators' => ['timezone'],
26 ],
27 'firstDayOfTheWeek' => [
28 'section' => 'preferences',
29 'storage' => 'metricool',
30 'validators' => ['firstDayOfWeek'],
31 ],
32 'sendToAlternativeEmail' => [
33 'section' => 'account',
34 'validators' => ['required'],
35 'type' => 'boolean',
36 'storage' => 'metricool',
37 ],
38 'alternativeEmail' => [
39 'section' => 'account',
40 'validators' => ['requiredIf:sendToAlternativeEmail,true', 'email'],
41 'storage' => 'metricool',
42 ],
43 'trackingScriptActive' => [
44 'section' => 'tracking',
45 'type' => 'boolean',
46 'defaultValue' => false,
47 ],
48 'trackingScriptHash' => [
49 'section' => 'tracking',
50 ]
51 ],
52 'storages' => [
53 'default' => [
54 'class' => 'OptionsStorage',
55 'prefix' => 'metricool_',
56 'casing' => 'snakeCase',
57 ],
58 'metricool' => [
59 'class' => 'RemoteStorage',
60 'method' => 'patch',
61 'casing' => 'camelCase',
62 ],
63 ],
64 ];
65