| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253 | <?phpreturn [    '@class' => 'Grav\\Common\\Config\\CompiledBlueprints',    'timestamp' => 1591883669,    'checksum' => 'acb6c37cdb7402cc9c78d5934c479a09',    'files' => [        'system/blueprints/config' => [            'backups' => [                'file' => 'system/blueprints/config/backups.yaml',                'modified' => 1591823779            ],            'media' => [                'file' => 'system/blueprints/config/media.yaml',                'modified' => 1591823779            ],            'scheduler' => [                'file' => 'system/blueprints/config/scheduler.yaml',                'modified' => 1591823779            ],            'security' => [                'file' => 'system/blueprints/config/security.yaml',                'modified' => 1591823779            ],            'site' => [                'file' => 'system/blueprints/config/site.yaml',                'modified' => 1591823779            ],            'streams' => [                'file' => 'system/blueprints/config/streams.yaml',                'modified' => 1591823779            ],            'system' => [                'file' => 'system/blueprints/config/system.yaml',                'modified' => 1591823779            ]        ],        'user/plugins' => [            'plugins/admin' => [                'file' => 'user/plugins/admin/blueprints.yaml',                'modified' => 1591823801            ],            'plugins/markdown-notices' => [                'file' => 'user/plugins/markdown-notices/blueprints.yaml',                'modified' => 1591823175            ],            'plugins/admin-addon-user-manager' => [                'file' => 'user/plugins/admin-addon-user-manager/blueprints.yaml',                'modified' => 1591823819            ],            'plugins/form' => [                'file' => 'user/plugins/form/blueprints.yaml',                'modified' => 1591823840            ],            'plugins/login' => [                'file' => 'user/plugins/login/blueprints.yaml',                'modified' => 1591823843            ],            'plugins/error' => [                'file' => 'user/plugins/error/blueprints.yaml',                'modified' => 1591823175            ],            'plugins/email' => [                'file' => 'user/plugins/email/blueprints.yaml',                'modified' => 1591823799            ],            'plugins/taxonomylist' => [                'file' => 'user/plugins/taxonomylist/blueprints.yaml',                'modified' => 1591823175            ],            'plugins/vimeo' => [                'file' => 'user/plugins/vimeo/blueprints.yaml',                'modified' => 1591824173            ],            'plugins/problems' => [                'file' => 'user/plugins/problems/blueprints.yaml',                'modified' => 1591823175            ]        ]    ],    'data' => [        'items' => [            'backups' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'backups.history_title' => [                'type' => 'section',                'underline' => true,                'name' => 'backups.history_title',                'validation' => 'loose'            ],            'backups.history' => [                'type' => 'backupshistory',                'name' => 'backups.history',                'validation' => 'loose'            ],            'backups.config_title' => [                'type' => 'section',                'underline' => true,                'name' => 'backups.config_title',                'validation' => 'loose'            ],            'backups.purge' => [                'type' => '_parent',                'name' => 'backups.purge',                'form_field' => false            ],            'backups.purge.trigger' => [                'type' => 'select',                'label' => 'PLUGIN_ADMIN.BACKUPS_STORAGE_PURGE_TRIGGER',                'size' => 'medium',                'default' => 'space',                'options' => [                    'space' => 'Maximum Backup Space',                    'number' => 'Maximum Number of Backups',                    'time' => 'maximum Retention Time'                ],                'validate' => [                    'required' => true                ],                'name' => 'backups.purge.trigger',                'validation' => 'loose'            ],            'backups.purge.max_backups_count' => [                'type' => 'number',                'label' => 'PLUGIN_ADMIN.BACKUPS_MAX_COUNT',                'default' => 25,                'size' => 'x-small',                'validate' => [                    'min' => 0,                    'type' => 'number',                    'required' => true,                    'message' => 'Must be a number 0 or greater'                ],                'name' => 'backups.purge.max_backups_count',                'validation' => 'loose'            ],            'backups.purge.max_backups_space' => [                'type' => 'number',                'label' => 'PLUGIN_ADMIN.BACKUPS_MAX_SPACE',                'append' => 'in GB',                'size' => 'x-small',                'default' => 5,                'validate' => [                    'min' => 1,                    'type' => 'number',                    'required' => true,                    'message' => 'Space must be 1GB or greater'                ],                'name' => 'backups.purge.max_backups_space',                'validation' => 'loose'            ],            'backups.purge.max_backups_time' => [                'type' => 'number',                'label' => 'PLUGIN_ADMIN.BACKUPS_MAX_RETENTION_TIME',                'append' => 'PLUGIN_ADMIN.BACKUPS_MAX_RETENTION_TIME_APPEND',                'size' => 'x-small',                'default' => 365,                'validate' => [                    'min' => 7,                    'type' => 'number',                    'required' => true,                    'message' => 'Rentenion days must be 7 or greater'                ],                'name' => 'backups.purge.max_backups_time',                'validation' => 'loose'            ],            'backups.profiles_title' => [                'type' => 'section',                'underline' => true,                'name' => 'backups.profiles_title',                'validation' => 'loose'            ],            'backups.profiles' => [                'type' => 'list',                'style' => 'vertical',                'label' => NULL,                'classes' => 'backups-list compact',                'sort' => false,                'name' => 'backups.profiles',                'validation' => 'loose'            ],            'backups.profiles.name' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.NAME',                'validate' => [                    'max' => 20,                    'message' => 'Name must be less than 20 characters',                    'required' => true                ],                'name' => 'backups.profiles.name',                'validation' => 'loose'            ],            'backups.profiles.root' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.BACKUPS_PROFILE_ROOT_FOLDER',                'default' => '/',                'validate' => [                    'required' => true                ],                'name' => 'backups.profiles.root',                'validation' => 'loose'            ],            'backups.profiles.exclude_paths' => [                'type' => 'textarea',                'label' => 'PLUGIN_ADMIN.BACKUPS_PROFILE_EXCLUDE_PATHS',                'rows' => 5,                'name' => 'backups.profiles.exclude_paths',                'validation' => 'loose'            ],            'backups.profiles.exclude_files' => [                'type' => 'textarea',                'label' => 'PLUGIN_ADMIN.BACKUPS_PROFILE_EXCLUDE_FILES',                'rows' => 5,                'name' => 'backups.profiles.exclude_files',                'validation' => 'loose'            ],            'backups.profiles.schedule' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.BACKUPS_PROFILE_SCHEDULE',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'backups.profiles.schedule',                'validation' => 'loose'            ],            'backups.profiles.schedule_at' => [                'type' => 'cron',                'label' => 'PLUGIN_ADMIN.BACKUPS_PROFILE_SCHEDULE_AT',                'default' => '* 3 * * *',                'validate' => [                    'required' => true                ],                'name' => 'backups.profiles.schedule_at',                'validation' => 'loose'            ],            'media' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'scheduler' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'scheduler.status_title' => [                'type' => 'section',                'underline' => true,                'name' => 'scheduler.status_title',                'validation' => 'loose'            ],            'scheduler.status' => [                'type' => 'cronstatus',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'scheduler.status',                'validation' => 'loose'            ],            'scheduler.jobs_title' => [                'type' => 'section',                'underline' => true,                'name' => 'scheduler.jobs_title',                'validation' => 'loose'            ],            'scheduler.custom_jobs' => [                'type' => 'list',                'style' => 'vertical',                'label' => NULL,                'classes' => 'cron-job-list compact',                'key' => 'id',                'name' => 'scheduler.custom_jobs',                'validation' => 'loose'            ],            'scheduler.custom_jobs.id' => [                'type' => 'key',                'label' => 'ID',                'validate' => [                    'required' => true,                    'pattern' => '[a-zа-я0-9_\\-]+',                    'max' => 20,                    'message' => 'ID must be lowercase with dashes/underscores only and less than 20 characters'                ],                'name' => 'scheduler.custom_jobs.id',                'validation' => 'loose'            ],            'scheduler.custom_jobs.command' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.COMMAND',                'validate' => [                    'required' => true                ],                'name' => 'scheduler.custom_jobs.command',                'validation' => 'loose'            ],            'scheduler.custom_jobs.args' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.EXTRA_ARGUMENTS',                'name' => 'scheduler.custom_jobs.args',                'validation' => 'loose'            ],            'scheduler.custom_jobs.at' => [                'type' => 'cron',                'label' => 'PLUGIN_ADMIN.SCHEDULER_RUNAT',                'validate' => [                    'required' => true                ],                'name' => 'scheduler.custom_jobs.at',                'validation' => 'loose'            ],            'scheduler.custom_jobs.output' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.SCHEDULER_OUTPUT',                'name' => 'scheduler.custom_jobs.output',                'validation' => 'loose'            ],            'scheduler.custom_jobs.output_mode' => [                'type' => 'select',                'label' => 'PLUGIN_ADMIN.SCHEDULER_OUTPUT_TYPE',                'default' => 'append',                'options' => [                    'append' => 'Append',                    'overwrite' => 'Overwrite'                ],                'name' => 'scheduler.custom_jobs.output_mode',                'validation' => 'loose'            ],            'scheduler.custom_jobs.email' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.SCHEDULER_EMAIL',                'name' => 'scheduler.custom_jobs.email',                'validation' => 'loose'            ],            'security' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'security.xss_section' => [                'type' => 'section',                'underline' => true,                'name' => 'security.xss_section',                'validation' => 'loose'            ],            'security.xss_whitelist' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.XSS_WHITELIST_PERMISSIONS',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'security.xss_whitelist',                'validation' => 'loose'            ],            'security.xss_enabled' => [                'type' => '_parent',                'name' => 'security.xss_enabled',                'form_field' => false            ],            'security.xss_enabled.on_events' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.XSS_ON_EVENTS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'security.xss_enabled.on_events',                'validation' => 'loose'            ],            'security.xss_enabled.invalid_protocols' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.XSS_INVALID_PROTOCOLS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'security.xss_enabled.invalid_protocols',                'validation' => 'loose'            ],            'security.xss_invalid_protocols' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.XSS_INVALID_PROTOCOLS_LIST',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'security.xss_invalid_protocols',                'validation' => 'loose'            ],            'security.xss_enabled.moz_binding' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.XSS_MOZ_BINDINGS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'security.xss_enabled.moz_binding',                'validation' => 'loose'            ],            'security.xss_enabled.html_inline_styles' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.XSS_HTML_INLINE_STYLES',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'security.xss_enabled.html_inline_styles',                'validation' => 'loose'            ],            'security.xss_enabled.dangerous_tags' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.XSS_DANGEROUS_TAGS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'security.xss_enabled.dangerous_tags',                'validation' => 'loose'            ],            'security.xss_dangerous_tags' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.XSS_DANGEROUS_TAGS_LIST',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'security.xss_dangerous_tags',                'validation' => 'loose'            ],            'security.uploads_section' => [                'type' => 'section',                'underline' => true,                'name' => 'security.uploads_section',                'validation' => 'loose'            ],            'security.uploads_dangerous_extensions' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.UPLOADS_DANGEROUS_EXTENSIONS',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'security.uploads_dangerous_extensions',                'validation' => 'loose'            ],            'site' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'site.title' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.SITE_TITLE',                'size' => 'large',                'name' => 'site.title',                'validation' => 'loose'            ],            'site.default_lang' => [                'type' => 'text',                'label' => 'PLUGIN_ADMIN.SITE_DEFAULT_LANG',                'size' => 'x-small',                'name' => 'site.default_lang',                'validation' => 'loose'            ],            'site.author' => [                'type' => '_parent',                'name' => 'site.author',                'form_field' => false            ],            'site.author.name' => [                'type' => 'text',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.DEFAULT_AUTHOR',                'name' => 'site.author.name',                'validation' => 'loose'            ],            'site.author.email' => [                'type' => 'text',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.DEFAULT_EMAIL',                'validate' => [                    'type' => 'email'                ],                'name' => 'site.author.email',                'validation' => 'loose'            ],            'site.taxonomies' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.TAXONOMY_TYPES',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'site.taxonomies',                'validation' => 'loose'            ],            'site.content' => [                'type' => 'section',                'underline' => true,                'name' => 'site.content',                'validation' => 'loose'            ],            'site.summary' => [                'type' => 'section',                'underline' => true,                'name' => 'site.summary',                'validation' => 'loose'            ],            'site.summary.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ENABLED',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'site.summary.enabled',                'validation' => 'loose'            ],            'site.summary.size' => [                'type' => 'text',                'size' => 'small',                'append' => 'PLUGIN_ADMIN.CHARACTERS',                'label' => 'PLUGIN_ADMIN.SUMMARY_SIZE',                'validate' => [                    'type' => 'int',                    'min' => 0,                    'max' => 65536                ],                'name' => 'site.summary.size',                'validation' => 'loose'            ],            'site.summary.format' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.FORMAT',                'classes' => 'fancy',                'highlight' => 'short',                'options' => [                    'short' => 'PLUGIN_ADMIN.SHORT',                    'long' => 'PLUGIN_ADMIN.LONG'                ],                'name' => 'site.summary.format',                'validation' => 'loose'            ],            'site.summary.delimiter' => [                'type' => 'text',                'size' => 'x-small',                'label' => 'PLUGIN_ADMIN.DELIMITER',                'name' => 'site.summary.delimiter',                'validation' => 'loose'            ],            'site.metadata' => [                'type' => 'section',                'underline' => true,                'name' => 'site.metadata',                'validation' => 'loose'            ],            'site.redirects' => [                'type' => 'array',                'label' => 'PLUGIN_ADMIN.CUSTOM_REDIRECTS',                'name' => 'site.redirects',                'validation' => 'loose'            ],            'site.routes' => [                'type' => 'section',                'underline' => true,                'name' => 'site.routes',                'validation' => 'loose'            ],            'streams' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose',                    'hidden' => true                ]            ],            'streams.schemes' => [                'type' => '_parent',                'name' => 'streams.schemes',                'form_field' => false            ],            'streams.schemes.xxx' => [                'type' => 'array',                'name' => 'streams.schemes.xxx',                'validation' => 'loose'            ],            'system' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'system.content_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.content_section',                'validation' => 'loose'            ],            'system.home' => [                'type' => '_parent',                'name' => 'system.home',                'form_field' => false            ],            'system.home.alias' => [                'type' => 'pages',                'size' => 'large',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.HOME_PAGE',                'show_all' => false,                'show_modular' => false,                'show_root' => false,                'show_slug' => true,                'name' => 'system.home.alias',                'validation' => 'loose'            ],            'system.home.hide_in_urls' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.HIDE_HOME_IN_URLS',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.home.hide_in_urls',                'validation' => 'loose'            ],            'system.pages' => [                'type' => '_parent',                'name' => 'system.pages',                'form_field' => false            ],            'system.pages.theme' => [                'type' => 'themeselect',                'classes' => 'fancy',                'selectize' => true,                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.DEFAULT_THEME',                'name' => 'system.pages.theme',                'validation' => 'loose'            ],            'system.pages.process' => [                'type' => 'checkboxes',                'label' => 'PLUGIN_ADMIN.PROCESS',                'default' => [                    0 => [                        'markdown' => true                    ],                    1 => [                        'twig' => true                    ]                ],                'options' => [                    'markdown' => 'Markdown',                    'twig' => 'Twig'                ],                'use' => 'keys',                'name' => 'system.pages.process',                'validation' => 'loose'            ],            'system.pages.types' => [                'type' => 'array',                'label' => 'PLUGIN_ADMIN.PAGE_TYPES',                'size' => 'small',                'default' => [                    0 => 'html',                    1 => 'htm',                    2 => 'json',                    3 => 'xml',                    4 => 'txt',                    5 => 'rss',                    6 => 'atom'                ],                'value_only' => true,                'name' => 'system.pages.types',                'validation' => 'loose'            ],            'system.timezone' => [                'type' => 'select',                'label' => 'PLUGIN_ADMIN.TIMEZONE',                'size' => 'medium',                'classes' => 'fancy',                'data-options@' => '\\Grav\\Common\\Utils::timezones',                'default' => '',                'options' => [                    '' => 'Default (Server Timezone)'                ],                'name' => 'system.timezone',                'validation' => 'loose'            ],            'system.pages.dateformat' => [                'type' => '_parent',                'name' => 'system.pages.dateformat',                'form_field' => false            ],            'system.pages.dateformat.default' => [                'type' => 'select',                'size' => 'medium',                'selectize' => [                    'create' => true                ],                'label' => 'PLUGIN_ADMIN.DEFAULT_DATE_FORMAT',                'data-options@' => '\\Grav\\Common\\Utils::dateFormats',                'validate' => [                    'type' => 'string'                ],                'name' => 'system.pages.dateformat.default',                'validation' => 'loose'            ],            'system.pages.dateformat.short' => [                'type' => 'dateformat',                'size' => 'medium',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.SHORT_DATE_FORMAT',                'default' => 'jS M Y',                'options' => [                    'F jS \\a\\t g:ia' => 'Date1',                    'l jS \\of F g:i A' => 'Date2',                    'D, d M Y G:i:s' => 'Date3',                    'd-m-y G:i' => 'Date4',                    'jS M Y' => 'Date5'                ],                'name' => 'system.pages.dateformat.short',                'validation' => 'loose'            ],            'system.pages.dateformat.long' => [                'type' => 'dateformat',                'size' => 'medium',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.LONG_DATE_FORMAT',                'options' => [                    'F jS \\a\\t g:ia' => 'Date1',                    'l jS \\of F g:i A' => 'Date2',                    'D, d M Y G:i:s' => 'Date3',                    'd-m-y G:i' => 'Date4',                    'jS M Y' => 'Date5'                ],                'name' => 'system.pages.dateformat.long',                'validation' => 'loose'            ],            'system.pages.order' => [                'type' => '_parent',                'name' => 'system.pages.order',                'form_field' => false            ],            'system.pages.order.by' => [                'type' => 'select',                'size' => 'large',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.DEFAULT_ORDERING',                'options' => [                    'default' => 'PLUGIN_ADMIN.DEFAULT_ORDERING_DEFAULT',                    'folder' => 'PLUGIN_ADMIN.DEFAULT_ORDERING_FOLDER',                    'title' => 'PLUGIN_ADMIN.DEFAULT_ORDERING_TITLE',                    'date' => 'PLUGIN_ADMIN.DEFAULT_ORDERING_DATE'                ],                'name' => 'system.pages.order.by',                'validation' => 'loose'            ],            'system.pages.order.dir' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.DEFAULT_ORDER_DIRECTION',                'highlight' => 'asc',                'default' => 'desc',                'options' => [                    'asc' => 'PLUGIN_ADMIN.ASCENDING',                    'desc' => 'PLUGIN_ADMIN.DESCENDING'                ],                'name' => 'system.pages.order.dir',                'validation' => 'loose'            ],            'system.pages.list' => [                'type' => '_parent',                'name' => 'system.pages.list',                'form_field' => false            ],            'system.pages.list.count' => [                'type' => 'text',                'size' => 'x-small',                'append' => 'PLUGIN_ADMIN.PAGES',                'label' => 'PLUGIN_ADMIN.DEFAULT_PAGE_COUNT',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'system.pages.list.count',                'validation' => 'loose'            ],            'system.pages.publish_dates' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.DATE_BASED_PUBLISHING',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.publish_dates',                'validation' => 'loose'            ],            'system.pages.events' => [                'type' => 'checkboxes',                'label' => 'PLUGIN_ADMIN.EVENTS',                'default' => [                    0 => [                        'page' => true                    ],                    1 => [                        'twig' => true                    ]                ],                'options' => [                    'page' => 'Page Events',                    'twig' => 'Twig Events'                ],                'use' => 'keys',                'name' => 'system.pages.events',                'validation' => 'loose'            ],            'system.pages.append_url_extension' => [                'type' => 'text',                'size' => 'x-small',                'label' => 'PLUGIN_ADMIN.APPEND_URL_EXT',                'name' => 'system.pages.append_url_extension',                'validation' => 'loose'            ],            'system.pages.redirect_default_route' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.REDIRECT_DEFAULT_ROUTE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.redirect_default_route',                'validation' => 'loose'            ],            'system.pages.redirect_default_code' => [                'type' => 'select',                'size' => 'medium',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.REDIRECT_DEFAULT_CODE',                'options' => [                    301 => '301 - Permanent',                    302 => '302 - Found',                    303 => '303 - Other',                    304 => '304 - Not Modified'                ],                'name' => 'system.pages.redirect_default_code',                'validation' => 'loose'            ],            'system.pages.redirect_trailing_slash' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.REDIRECT_TRAILING_SLASH',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.redirect_trailing_slash',                'validation' => 'loose'            ],            'system.pages.ignore_hidden' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.IGNORE_HIDDEN',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.ignore_hidden',                'validation' => 'loose'            ],            'system.pages.ignore_files' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.IGNORE_FILES',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.pages.ignore_files',                'validation' => 'loose'            ],            'system.pages.ignore_folders' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.IGNORE_FOLDERS',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.pages.ignore_folders',                'validation' => 'loose'            ],            'system.pages.hide_empty_folders' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.HIDE_EMPTY_FOLDERS',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.hide_empty_folders',                'validation' => 'loose'            ],            'system.pages.url_taxonomy_filters' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ALLOW_URL_TAXONOMY_FILTERS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.url_taxonomy_filters',                'validation' => 'loose'            ],            'system.pages.twig_first' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.TWIG_FIRST',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.twig_first',                'validation' => 'loose'            ],            'system.pages.never_cache_twig' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.NEVER_CACHE_TWIG',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.never_cache_twig',                'validation' => 'loose'            ],            'system.pages.frontmatter' => [                'type' => '_parent',                'name' => 'system.pages.frontmatter',                'form_field' => false            ],            'system.pages.frontmatter.process_twig' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.FRONTMATTER_PROCESS_TWIG',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.frontmatter.process_twig',                'validation' => 'loose'            ],            'system.pages.frontmatter.ignore_fields' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.FRONTMATTER_IGNORE_FIELDS',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.pages.frontmatter.ignore_fields',                'validation' => 'loose'            ],            'system.content' => [                'type' => 'tab',                'name' => 'system.content',                'validation' => 'loose'            ],            'system.languages-section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.languages-section',                'validation' => 'loose'            ],            'system.languages' => [                'type' => 'tab',                'name' => 'system.languages',                'validation' => 'loose'            ],            'system.languages.supported' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.SUPPORTED',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.languages.supported',                'validation' => 'loose'            ],            'system.languages.default_lang' => [                'type' => 'text',                'size' => 'x-small',                'label' => 'PLUGIN_ADMIN.DEFAULT_LANG',                'name' => 'system.languages.default_lang',                'validation' => 'loose'            ],            'system.languages.include_default_lang' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.INCLUDE_DEFAULT_LANG',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.include_default_lang',                'validation' => 'loose'            ],            'system.languages.pages_fallback_only' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.PAGES_FALLBACK_ONLY',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.pages_fallback_only',                'validation' => 'loose'            ],            'system.languages.translations' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.TRANSLATIONS_ENABLED',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.translations',                'validation' => 'loose'            ],            'system.languages.translations_fallback' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.TRANSLATIONS_FALLBACK',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.translations_fallback',                'validation' => 'loose'            ],            'system.languages.session_store_active' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ACTIVE_LANGUAGE_IN_SESSION',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.session_store_active',                'validation' => 'loose'            ],            'system.languages.http_accept_language' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.HTTP_ACCEPT_LANGUAGE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.http_accept_language',                'validation' => 'loose'            ],            'system.languages.override_locale' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.OVERRIDE_LOCALE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.languages.override_locale',                'validation' => 'loose'            ],            'system.http_headers_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.http_headers_section',                'validation' => 'loose'            ],            'system.pages.expires' => [                'type' => 'text',                'size' => 'small',                'append' => 'GRAV.NICETIME.SECOND_PLURAL',                'label' => 'PLUGIN_ADMIN.EXPIRES',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'system.pages.expires',                'validation' => 'loose'            ],            'system.pages.cache_control' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.CACHE_CONTROL',                'name' => 'system.pages.cache_control',                'validation' => 'loose'            ],            'system.pages.last_modified' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.LAST_MODIFIED',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.last_modified',                'validation' => 'loose'            ],            'system.pages.etag' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ETAG',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.etag',                'validation' => 'loose'            ],            'system.pages.vary_accept_encoding' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.VARY_ACCEPT_ENCODING',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.vary_accept_encoding',                'validation' => 'loose'            ],            'system.http_headers' => [                'type' => 'tab',                'name' => 'system.http_headers',                'validation' => 'loose'            ],            'system.markdow_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.markdow_section',                'validation' => 'loose'            ],            'system.pages.markdown' => [                'type' => '_parent',                'name' => 'system.pages.markdown',                'form_field' => false            ],            'system.pages.markdown.extra' => [                'type' => 'toggle',                'label' => 'Markdown extra',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.markdown.extra',                'validation' => 'loose'            ],            'system.pages.markdown.auto_line_breaks' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.AUTO_LINE_BREAKS',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.markdown.auto_line_breaks',                'validation' => 'loose'            ],            'system.pages.markdown.auto_url_links' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.AUTO_URL_LINKS',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.markdown.auto_url_links',                'validation' => 'loose'            ],            'system.pages.markdown.escape_markup' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ESCAPE_MARKUP',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.pages.markdown.escape_markup',                'validation' => 'loose'            ],            'system.pages.markdown.valid_link_attributes' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.VALID_LINK_ATTRIBUTES',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.pages.markdown.valid_link_attributes',                'validation' => 'loose'            ],            'system.markdown' => [                'type' => 'tab',                'name' => 'system.markdown',                'validation' => 'loose'            ],            'system.caching_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.caching_section',                'validation' => 'loose'            ],            'system.cache' => [                'type' => '_parent',                'name' => 'system.cache',                'form_field' => false            ],            'system.cache.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CACHING',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.cache.enabled',                'validation' => 'loose'            ],            'system.cache.check' => [                'type' => '_parent',                'name' => 'system.cache.check',                'form_field' => false            ],            'system.cache.check.method' => [                'type' => 'select',                'size' => 'medium',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.CACHE_CHECK_METHOD',                'options' => [                    'file' => 'Markdown + Yaml file timestamps',                    'folder' => 'Folder timestamps',                    'hash' => 'All files timestamps',                    'none' => 'No timestamp checking'                ],                'name' => 'system.cache.check.method',                'validation' => 'loose'            ],            'system.cache.driver' => [                'type' => 'select',                'size' => 'small',                'classes' => 'fancy',                'label' => 'PLUGIN_ADMIN.CACHE_DRIVER',                'options' => [                    'auto' => 'Auto detect',                    'file' => 'File',                    'apc' => 'APC',                    'apcu' => 'APCu',                    'xcache' => 'Xcache',                    'memcache' => 'Memcache',                    'memcached' => 'Memcached',                    'wincache' => 'WinCache',                    'redis' => 'Redis'                ],                'name' => 'system.cache.driver',                'validation' => 'loose'            ],            'system.cache.prefix' => [                'type' => 'text',                'size' => 'x-small',                'label' => 'PLUGIN_ADMIN.CACHE_PREFIX',                'name' => 'system.cache.prefix',                'validation' => 'loose'            ],            'system.cache.purge_at' => [                'type' => 'cron',                'label' => 'PLUGIN_ADMIN.CACHE_PURGE_JOB',                'default' => '* 4 * * *',                'name' => 'system.cache.purge_at',                'validation' => 'loose'            ],            'system.cache.clear_at' => [                'type' => 'cron',                'label' => 'PLUGIN_ADMIN.CACHE_CLEAR_JOB',                'default' => '* 3 * * *',                'name' => 'system.cache.clear_at',                'validation' => 'loose'            ],            'system.cache.clear_job_type' => [                'type' => 'select',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.CACHE_JOB_TYPE',                'options' => [                    'standard' => 'Standard Cache Folders',                    'all' => 'All Cache Folders'                ],                'name' => 'system.cache.clear_job_type',                'validation' => 'loose'            ],            'system.cache.clear_images_by_default' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CLEAR_IMAGES_BY_DEFAULT',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.cache.clear_images_by_default',                'validation' => 'loose'            ],            'system.cache.cli_compatibility' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CLI_COMPATIBILITY',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.cache.cli_compatibility',                'validation' => 'loose'            ],            'system.cache.lifetime' => [                'type' => 'text',                'size' => 'small',                'append' => 'GRAV.NICETIME.SECOND_PLURAL',                'label' => 'PLUGIN_ADMIN.LIFETIME',                'validate' => [                    'type' => 'number'                ],                'name' => 'system.cache.lifetime',                'validation' => 'loose'            ],            'system.cache.gzip' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.GZIP_COMPRESSION',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.cache.gzip',                'validation' => 'loose'            ],            'system.cache.allow_webserver_gzip' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ALLOW_WEBSERVER_GZIP',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.cache.allow_webserver_gzip',                'validation' => 'loose'            ],            'system.cache.memcache' => [                'type' => '_parent',                'name' => 'system.cache.memcache',                'form_field' => false            ],            'system.cache.memcache.server' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.MEMCACHE_SERVER',                'name' => 'system.cache.memcache.server',                'validation' => 'loose'            ],            'system.cache.memcache.port' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.MEMCACHE_PORT',                'name' => 'system.cache.memcache.port',                'validation' => 'loose'            ],            'system.cache.memcached' => [                'type' => '_parent',                'name' => 'system.cache.memcached',                'form_field' => false            ],            'system.cache.memcached.server' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.MEMCACHED_SERVER',                'name' => 'system.cache.memcached.server',                'validation' => 'loose'            ],            'system.cache.memcached.port' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.MEMCACHED_PORT',                'name' => 'system.cache.memcached.port',                'validation' => 'loose'            ],            'system.cache.redis' => [                'type' => '_parent',                'name' => 'system.cache.redis',                'form_field' => false            ],            'system.cache.redis.socket' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.REDIS_SOCKET',                'name' => 'system.cache.redis.socket',                'validation' => 'loose'            ],            'system.cache.redis.server' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.REDIS_SERVER',                'name' => 'system.cache.redis.server',                'validation' => 'loose'            ],            'system.cache.redis.port' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.REDIS_PORT',                'name' => 'system.cache.redis.port',                'validation' => 'loose'            ],            'system.cache.redis.password' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.REDIS_PASSWORD',                'name' => 'system.cache.redis.password',                'validation' => 'loose'            ],            'system.caching' => [                'type' => 'tab',                'name' => 'system.caching',                'validation' => 'loose'            ],            'system.twig_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.twig_section',                'validation' => 'loose'            ],            'system.twig' => [                'type' => 'tab',                'name' => 'system.twig',                'validation' => 'loose'            ],            'system.twig.cache' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.TWIG_CACHING',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.twig.cache',                'validation' => 'loose'            ],            'system.twig.debug' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.TWIG_DEBUG',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.twig.debug',                'validation' => 'loose'            ],            'system.twig.auto_reload' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.DETECT_CHANGES',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.twig.auto_reload',                'validation' => 'loose'            ],            'system.twig.autoescape' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.AUTOESCAPE_VARIABLES',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.twig.autoescape',                'validation' => 'loose'            ],            'system.twig.umask_fix' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.TWIG_UMASK_FIX',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.twig.umask_fix',                'validation' => 'loose'            ],            'system.assets_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.assets_section',                'validation' => 'loose'            ],            'system.assets' => [                'type' => 'tab',                'name' => 'system.assets',                'validation' => 'loose'            ],            'system.assets.css_pipeline' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CSS_PIPELINE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.css_pipeline',                'validation' => 'loose'            ],            'system.assets.css_pipeline_include_externals' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CSS_PIPELINE_INCLUDE_EXTERNALS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.css_pipeline_include_externals',                'validation' => 'loose'            ],            'system.assets.css_pipeline_before_excludes' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CSS_PIPELINE_BEFORE_EXCLUDES',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.css_pipeline_before_excludes',                'validation' => 'loose'            ],            'system.assets.css_minify' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CSS_MINIFY',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.css_minify',                'validation' => 'loose'            ],            'system.assets.css_minify_windows' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CSS_MINIFY_WINDOWS_OVERRIDE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.css_minify_windows',                'validation' => 'loose'            ],            'system.assets.css_rewrite' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CSS_REWRITE',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.css_rewrite',                'validation' => 'loose'            ],            'system.assets.js_pipeline' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.JAVASCRIPT_PIPELINE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.js_pipeline',                'validation' => 'loose'            ],            'system.assets.js_pipeline_include_externals' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.JAVASCRIPT_PIPELINE_INCLUDE_EXTERNALS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.js_pipeline_include_externals',                'validation' => 'loose'            ],            'system.assets.js_pipeline_before_excludes' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.JAVASCRIPT_PIPELINE_BEFORE_EXCLUDES',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.js_pipeline_before_excludes',                'validation' => 'loose'            ],            'system.assets.js_minify' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.JAVASCRIPT_MINIFY',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.js_minify',                'validation' => 'loose'            ],            'system.assets.enable_asset_timestamp' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ENABLED_TIMESTAMPS_ON_ASSETS',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.assets.enable_asset_timestamp',                'validation' => 'loose'            ],            'system.assets.collections' => [                'type' => 'multilevel',                'label' => 'PLUGIN_ADMIN.COLLECTIONS',                'validate' => [                    'type' => 'array'                ],                'name' => 'system.assets.collections',                'validation' => 'loose'            ],            'system.errors_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.errors_section',                'validation' => 'loose'            ],            'system.errors' => [                'type' => 'tab',                'name' => 'system.errors',                'validation' => 'loose'            ],            'system.errors.display' => [                'type' => 'select',                'label' => 'PLUGIN_ADMIN.DISPLAY_ERRORS',                'size' => 'medium',                'highlight' => 1,                'options' => [                    -1 => 'PLUGIN_ADMIN.ERROR_SYSTEM',                    0 => 'PLUGIN_ADMIN.ERROR_SIMPLE',                    1 => 'PLUGIN_ADMIN.ERROR_FULL_BACKTRACE'                ],                'validate' => [                    'type' => 'int'                ],                'name' => 'system.errors.display',                'validation' => 'loose'            ],            'system.errors.log' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.LOG_ERRORS',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.errors.log',                'validation' => 'loose'            ],            'system.log' => [                'type' => '_parent',                'name' => 'system.log',                'form_field' => false            ],            'system.log.handler' => [                'type' => 'select',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.LOG_HANDLER',                'default' => 'file',                'options' => [                    'file' => 'File',                    'syslog' => 'Syslog'                ],                'name' => 'system.log.handler',                'validation' => 'loose'            ],            'system.log.syslog' => [                'type' => '_parent',                'name' => 'system.log.syslog',                'form_field' => false            ],            'system.log.syslog.facility' => [                'type' => 'select',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.SYSLOG_FACILITY',                'default' => 'local6',                'options' => [                    'auth' => 'auth',                    'authpriv' => 'authpriv',                    'cron' => 'cron',                    'daemon' => 'daemon',                    'kern' => 'kern',                    'lpr' => 'lpr',                    'mail' => 'mail',                    'news' => 'news',                    'syslog' => 'syslog',                    'user' => 'user',                    'uucp' => 'uucp',                    'local0' => 'local0',                    'local1' => 'local1',                    'local2' => 'local2',                    'local3' => 'local3',                    'local4' => 'local4',                    'local5' => 'local5',                    'local6' => 'local6',                    'local7' => 'local7'                ],                'name' => 'system.log.syslog.facility',                'validation' => 'loose'            ],            'system.debugger_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.debugger_section',                'validation' => 'loose'            ],            'system.debugger' => [                'type' => 'tab',                'name' => 'system.debugger',                'validation' => 'loose'            ],            'system.debugger.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.DEBUGGER',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.debugger.enabled',                'validation' => 'loose'            ],            'system.debugger.shutdown' => [                'type' => '_parent',                'name' => 'system.debugger.shutdown',                'form_field' => false            ],            'system.debugger.shutdown.close_connection' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.SHUTDOWN_CLOSE_CONNECTION',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.debugger.shutdown.close_connection',                'validation' => 'loose'            ],            'system.media_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.media_section',                'validation' => 'loose'            ],            'system.images' => [                'type' => '_parent',                'name' => 'system.images',                'form_field' => false            ],            'system.images.default_image_quality' => [                'type' => 'range',                'append' => '%',                'label' => 'PLUGIN_ADMIN.DEFAULT_IMAGE_QUALITY',                'validate' => [                    'min' => 1,                    'max' => 100                ],                'name' => 'system.images.default_image_quality',                'validation' => 'loose'            ],            'system.images.cache_all' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CACHE_ALL',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.images.cache_all',                'validation' => 'loose'            ],            'system.images.cache_perms' => [                'type' => 'select',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.CACHE_PERMS',                'highlight' => '0755',                'options' => [                    '0755' => '0755',                    '0775' => '0775'                ],                'name' => 'system.images.cache_perms',                'validation' => 'loose'            ],            'system.images.debug' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.IMAGES_DEBUG',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.images.debug',                'validation' => 'loose'            ],            'system.images.auto_fix_orientation' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.IMAGES_AUTO_FIX_ORIENTATION',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.images.auto_fix_orientation',                'validation' => 'loose'            ],            'system.images.seofriendly' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.IMAGES_SEOFRIENDLY',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.images.seofriendly',                'validation' => 'loose'            ],            'system.media' => [                'type' => 'tab',                'name' => 'system.media',                'validation' => 'loose'            ],            'system.media.enable_media_timestamp' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ENABLE_MEDIA_TIMESTAMP',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.media.enable_media_timestamp',                'validation' => 'loose'            ],            'system.media.auto_metadata_exif' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ENABLE_AUTO_METADATA',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.media.auto_metadata_exif',                'validation' => 'loose'            ],            'system.media.allowed_fallback_types' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.FALLBACK_TYPES',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.media.allowed_fallback_types',                'validation' => 'loose'            ],            'system.media.unsupported_inline_types' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.INLINE_TYPES',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'system.media.unsupported_inline_types',                'validation' => 'loose'            ],            'system.session_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.session_section',                'validation' => 'loose'            ],            'system.session' => [                'type' => 'tab',                'name' => 'system.session',                'validation' => 'loose'            ],            'system.session.enabled' => [                'type' => 'hidden',                'label' => 'PLUGIN_ADMIN.ENABLED',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.session.enabled',                'validation' => 'loose'            ],            'system.session.initialize' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.SESSION_INITIALIZE',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.session.initialize',                'validation' => 'loose'            ],            'system.session.timeout' => [                'type' => 'text',                'size' => 'small',                'append' => 'GRAV.NICETIME.SECOND_PLURAL',                'label' => 'PLUGIN_ADMIN.TIMEOUT',                'validate' => [                    'type' => 'number',                    'min' => 0                ],                'name' => 'system.session.timeout',                'validation' => 'loose'            ],            'system.session.name' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.NAME',                'name' => 'system.session.name',                'validation' => 'loose'            ],            'system.session.uniqueness' => [                'type' => 'select',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.SESSION_UNIQUENESS',                'highlight' => 'path',                'default' => 'path',                'options' => [                    'path' => 'Grav\'s root file path',                    'salt' => 'Grav\'s random security salt'                ],                'name' => 'system.session.uniqueness',                'validation' => 'loose'            ],            'system.session.secure' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.SESSION_SECURE',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => false,                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.session.secure',                'validation' => 'loose'            ],            'system.session.httponly' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.SESSION_HTTPONLY',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.session.httponly',                'validation' => 'loose'            ],            'system.session.path' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.SESSION_PATH',                'name' => 'system.session.path',                'validation' => 'loose'            ],            'system.session.split' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.SESSION_SPLIT',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.session.split',                'validation' => 'loose'            ],            'system.advanced_section' => [                'type' => 'section',                'underline' => true,                'name' => 'system.advanced_section',                'validation' => 'loose'            ],            'system.gpm' => [                'type' => '_parent',                'name' => 'system.gpm',                'form_field' => false            ],            'system.gpm.releases' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.GPM_RELEASES',                'highlight' => 'stable',                'options' => [                    'stable' => 'PLUGIN_ADMIN.STABLE',                    'testing' => 'PLUGIN_ADMIN.TESTING'                ],                'name' => 'system.gpm.releases',                'validation' => 'loose'            ],            'system.gpm.proxy_url' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.PROXY_URL',                'name' => 'system.gpm.proxy_url',                'validation' => 'loose'            ],            'system.gpm.method' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.GPM_METHOD',                'highlight' => 'auto',                'options' => [                    'auto' => 'PLUGIN_ADMIN.AUTO',                    'fopen' => 'PLUGIN_ADMIN.FOPEN',                    'curl' => 'PLUGIN_ADMIN.CURL'                ],                'name' => 'system.gpm.method',                'validation' => 'loose'            ],            'system.gpm.official_gpm_only' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.GPM_OFFICIAL_ONLY',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'default' => true,                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.gpm.official_gpm_only',                'validation' => 'loose'            ],            'system.gpm.verify_peer' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.GPM_VERIFY_PEER',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.gpm.verify_peer',                'validation' => 'loose'            ],            'system.reverse_proxy_setup' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.REVERSE_PROXY',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.reverse_proxy_setup',                'validation' => 'loose'            ],            'system.username_regex' => [                'type' => 'text',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.USERNAME_REGEX',                'name' => 'system.username_regex',                'validation' => 'loose'            ],            'system.pwd_regex' => [                'type' => 'text',                'size' => 'large',                'label' => 'PLUGIN_ADMIN.PWD_REGEX',                'name' => 'system.pwd_regex',                'validation' => 'loose'            ],            'system.intl_enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.INTL_ENABLED',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.intl_enabled',                'validation' => 'loose'            ],            'system.wrapped_site' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.WRAPPED_SITE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.wrapped_site',                'validation' => 'loose'            ],            'system.absolute_urls' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ABSOLUTE_URLS',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.absolute_urls',                'validation' => 'loose'            ],            'system.param_sep' => [                'type' => 'select',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.PARAMETER_SEPARATOR',                'classes' => 'fancy',                'default' => '',                'options' => [                    ':' => ': (default)',                    ';' => '; (for Apache running on Windows)'                ],                'name' => 'system.param_sep',                'validation' => 'loose'            ],            'system.force_ssl' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.FORCE_SSL',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.force_ssl',                'validation' => 'loose'            ],            'system.force_lowercase_urls' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.FORCE_LOWERCASE_URLS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.force_lowercase_urls',                'validation' => 'loose'            ],            'system.custom_base_url' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.CUSTOM_BASE_URL',                'name' => 'system.custom_base_url',                'validation' => 'loose'            ],            'system.http_x_forwarded' => [                'type' => '_parent',                'name' => 'system.http_x_forwarded',                'form_field' => false            ],            'system.http_x_forwarded.protocol' => [                'type' => 'toggle',                'label' => 'HTTP_X_FORWARDED_PROTO Enabled',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.http_x_forwarded.protocol',                'validation' => 'loose'            ],            'system.http_x_forwarded.host' => [                'type' => 'toggle',                'label' => 'HTTP_X_FORWARDED_HOST Enabled',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.http_x_forwarded.host',                'validation' => 'loose'            ],            'system.http_x_forwarded.port' => [                'type' => 'toggle',                'label' => 'HTTP_X_FORWARDED_PORT Enabled',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.http_x_forwarded.port',                'validation' => 'loose'            ],            'system.http_x_forwarded.ip' => [                'type' => 'toggle',                'label' => 'HTTP_X_FORWARDED IP Enabled',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.http_x_forwarded.ip',                'validation' => 'loose'            ],            'system.accounts' => [                'type' => '_parent',                'name' => 'system.accounts',                'form_field' => false            ],            'system.accounts.type' => [                'type' => 'hidden',                'name' => 'system.accounts.type',                'validation' => 'loose'            ],            'system.accounts.storage' => [                'type' => 'hidden',                'name' => 'system.accounts.storage',                'validation' => 'loose'            ],            'system.strict_mode' => [                'type' => '_parent',                'name' => 'system.strict_mode',                'form_field' => false            ],            'system.strict_mode.yaml_compat' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.STRICT_YAML_COMPAT',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.strict_mode.yaml_compat',                'validation' => 'loose'            ],            'system.strict_mode.twig_compat' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.STRICT_TWIG_COMPAT',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'system.strict_mode.twig_compat',                'validation' => 'loose'            ],            'system.advanced' => [                'type' => 'tab',                'name' => 'system.advanced',                'validation' => 'loose'            ],            'system.system_tabs' => [                'type' => 'tabs',                'classes' => 'side-tabs',                'name' => 'system.system_tabs',                'validation' => 'loose'            ],            'plugins.admin' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'plugins' => [                'type' => '_parent',                'name' => 'plugins',                'form_field' => false            ],            'plugins.admin.Basics' => [                'type' => 'section',                'underline' => false,                'name' => 'plugins.admin.Basics',                'validation' => 'loose'            ],            'plugins.admin.enabled' => [                'type' => 'hidden',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.enabled',                'validation' => 'loose'            ],            'plugins.admin.cache_enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ADMIN_CACHING',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.cache_enabled',                'validation' => 'loose'            ],            'plugins.admin.twofa_enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.2FA_TITLE',                'default' => 1,                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.twofa_enabled',                'validation' => 'loose'            ],            'plugins.admin.route' => [                'type' => 'text',                'label' => 'Administrator path',                'size' => 'medium',                'name' => 'plugins.admin.route',                'validation' => 'loose'            ],            'plugins.admin.logo_text' => [                'type' => 'text',                'label' => 'Logo text',                'size' => 'medium',                'name' => 'plugins.admin.logo_text',                'validation' => 'loose'            ],            'plugins.admin.content_padding' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.CONTENT_PADDING',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.content_padding',                'validation' => 'loose'            ],            'plugins.admin.body_classes' => [                'type' => 'text',                'label' => 'Body classes',                'size' => 'medium',                'name' => 'plugins.admin.body_classes',                'validation' => 'loose'            ],            'plugins.admin.sidebar' => [                'type' => '_parent',                'name' => 'plugins.admin.sidebar',                'form_field' => false            ],            'plugins.admin.sidebar.activate' => [                'type' => 'select',                'label' => 'Sidebar Activation',                'size' => 'small',                'default' => 'tab',                'options' => [                    'tab' => 'Tab',                    'hover' => 'Hover'                ],                'name' => 'plugins.admin.sidebar.activate',                'validation' => 'loose'            ],            'plugins.admin.sidebar.hover_delay' => [                'type' => 'text',                'size' => 'x-small',                'append' => 'millseconds',                'label' => 'Hover delay',                'default' => 500,                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.admin.sidebar.hover_delay',                'validation' => 'loose'            ],            'plugins.admin.sidebar.size' => [                'type' => 'select',                'label' => 'Sidebar Size',                'size' => 'medium',                'default' => 'auto',                'options' => [                    'auto' => 'Automatic width',                    'small' => 'Small width'                ],                'name' => 'plugins.admin.sidebar.size',                'validation' => 'loose'            ],            'plugins.admin.theme' => [                'type' => 'hidden',                'label' => 'Theme',                'default' => 'grav',                'name' => 'plugins.admin.theme',                'validation' => 'loose'            ],            'plugins.admin.edit_mode' => [                'type' => 'select',                'label' => 'Edit mode',                'size' => 'small',                'default' => 'normal',                'options' => [                    'normal' => 'Normal',                    'expert' => 'Expert'                ],                'name' => 'plugins.admin.edit_mode',                'validation' => 'loose'            ],            'plugins.admin.frontend_preview_target' => [                'type' => 'select',                'label' => 'Preview pages target',                'size' => 'medium',                'default' => 'inline',                'options' => [                    'inline' => 'Inline in Admin',                    '_blank' => 'New tab',                    '_self' => 'Current tab'                ],                'name' => 'plugins.admin.frontend_preview_target',                'validation' => 'loose'            ],            'plugins.admin.pages' => [                'type' => '_parent',                'name' => 'plugins.admin.pages',                'form_field' => false            ],            'plugins.admin.pages.show_parents' => [                'type' => 'select',                'size' => 'medium',                'label' => 'Parent dropdown',                'highlight' => 1,                'options' => [                    'both' => 'Show slug and folder',                    'folder' => 'Show folder',                    'fullpath' => 'Show fullpath'                ],                'name' => 'plugins.admin.pages.show_parents',                'validation' => 'loose'            ],            'plugins.admin.pages.parents_levels' => [                'type' => 'text',                'label' => 'Parents Levels',                'size' => 'small',                'name' => 'plugins.admin.pages.parents_levels',                'validation' => 'loose'            ],            'plugins.admin.pages.show_modular' => [                'type' => 'toggle',                'label' => 'Modular parents',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.pages.show_modular',                'validation' => 'loose'            ],            'plugins.admin.google_fonts' => [                'type' => 'toggle',                'label' => 'Use Google Fonts',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.google_fonts',                'validation' => 'loose'            ],            'plugins.admin.show_beta_msg' => [                'type' => 'hidden',                'name' => 'plugins.admin.show_beta_msg',                'validation' => 'loose'            ],            'plugins.admin.show_github_msg' => [                'type' => 'toggle',                'label' => 'Show GitHub Link',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.show_github_msg',                'validation' => 'loose'            ],            'plugins.admin.pages_list_display_field' => [                'type' => 'text',                'size' => 'small',                'label' => 'Pages List Display Field',                'name' => 'plugins.admin.pages_list_display_field',                'validation' => 'loose'            ],            'plugins.admin.enable_auto_updates_check' => [                'type' => 'toggle',                'label' => 'Automatically check for updates',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.enable_auto_updates_check',                'validation' => 'loose'            ],            'plugins.admin.session' => [                'type' => '_parent',                'name' => 'plugins.admin.session',                'form_field' => false            ],            'plugins.admin.session.timeout' => [                'type' => 'text',                'size' => 'small',                'label' => 'Session Timeout',                'append' => 'secs',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.admin.session.timeout',                'validation' => 'loose'            ],            'plugins.admin.warnings' => [                'type' => '_parent',                'name' => 'plugins.admin.warnings',                'form_field' => false            ],            'plugins.admin.warnings.delete_page' => [                'type' => 'toggle',                'label' => 'Warn on page delete',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.warnings.delete_page',                'validation' => 'loose'            ],            'plugins.admin.warnings.secure_delete' => [                'type' => 'toggle',                'label' => 'Secure Delete',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.warnings.secure_delete',                'validation' => 'loose'            ],            'plugins.admin.hide_page_types' => [                'type' => 'array',                'label' => 'Hide page types in Admin',                'value_only' => true,                'name' => 'plugins.admin.hide_page_types',                'validation' => 'loose'            ],            'plugins.admin.hide_modular_page_types' => [                'type' => 'array',                'label' => 'Hide modular page types in Admin',                'value_only' => true,                'name' => 'plugins.admin.hide_modular_page_types',                'validation' => 'loose'            ],            'plugins.admin.log_viewer_files' => [                'type' => 'selectize',                'size' => 'medium',                'label' => 'PLUGIN_ADMIN.LOG_VIEWER_FILES',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'plugins.admin.log_viewer_files',                'validation' => 'loose'            ],            'plugins.admin.MediaResize' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.admin.MediaResize',                'validation' => 'loose'            ],            'plugins.admin.MediaResizeNote' => [                'type' => 'spacer',                'text' => 'PLUGIN_ADMIN.PAGEMEDIA_RESIZER',                'markdown' => true,                'name' => 'plugins.admin.MediaResizeNote',                'validation' => 'loose'            ],            'plugins.admin.pagemedia' => [                'type' => '_parent',                'name' => 'plugins.admin.pagemedia',                'form_field' => false            ],            'plugins.admin.pagemedia.resize_width' => [                'type' => 'number',                'size' => 'x-small',                'append' => 'pixels',                'label' => 'Resize Width',                'default' => 0,                'validate' => [                    'type' => 'number'                ],                'name' => 'plugins.admin.pagemedia.resize_width',                'validation' => 'loose'            ],            'plugins.admin.pagemedia.resize_height' => [                'type' => 'number',                'size' => 'x-small',                'append' => 'pixels',                'label' => 'Resize Height',                'default' => 0,                'validate' => [                    'type' => 'number'                ],                'name' => 'plugins.admin.pagemedia.resize_height',                'validation' => 'loose'            ],            'plugins.admin.pagemedia.res_min_width' => [                'type' => 'number',                'size' => 'x-small',                'append' => 'pixels',                'label' => 'Resolution Min Width',                'default' => 0,                'validate' => [                    'type' => 'number'                ],                'name' => 'plugins.admin.pagemedia.res_min_width',                'validation' => 'loose'            ],            'plugins.admin.pagemedia.res_min_height' => [                'type' => 'number',                'size' => 'x-small',                'append' => 'pixels',                'label' => 'Resolution Min Height',                'default' => 0,                'validate' => [                    'type' => 'number'                ],                'name' => 'plugins.admin.pagemedia.res_min_height',                'validation' => 'loose'            ],            'plugins.admin.pagemedia.res_max_width' => [                'type' => 'number',                'size' => 'x-small',                'append' => 'pixels',                'label' => 'Resolution Max Width',                'default' => 0,                'validate' => [                    'type' => 'number'                ],                'name' => 'plugins.admin.pagemedia.res_max_width',                'validation' => 'loose'            ],            'plugins.admin.pagemedia.res_max_height' => [                'type' => 'number',                'size' => 'x-small',                'append' => 'pixels',                'label' => 'Resolution Max Height',                'default' => 0,                'validate' => [                    'type' => 'number'                ],                'name' => 'plugins.admin.pagemedia.res_max_height',                'validation' => 'loose'            ],            'plugins.admin.pagemedia.resize_quality' => [                'type' => 'number',                'size' => 'x-small',                'append' => '0...1',                'label' => 'Resize Quality',                'default' => 0.8,                'validate' => [                    'type' => 'number',                    'step' => 0.01                ],                'name' => 'plugins.admin.pagemedia.resize_quality',                'validation' => 'loose'            ],            'plugins.admin.Dashboard' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.admin.Dashboard',                'validation' => 'loose'            ],            'plugins.admin.widgets' => [                'type' => '_parent',                'name' => 'plugins.admin.widgets',                'form_field' => false            ],            'plugins.admin.widgets.dashboard-maintenance' => [                'type' => 'toggle',                'label' => 'Maintenance Widget',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.widgets.dashboard-maintenance',                'validation' => 'loose'            ],            'plugins.admin.widgets.dashboard-statistics' => [                'type' => 'toggle',                'label' => 'Statistics Widget',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.widgets.dashboard-statistics',                'validation' => 'loose'            ],            'plugins.admin.widgets.dashboard-notifications' => [                'type' => 'toggle',                'label' => 'Notifications Feed Widget',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.widgets.dashboard-notifications',                'validation' => 'loose'            ],            'plugins.admin.widgets.dashboard-feed' => [                'type' => 'toggle',                'label' => 'News Feed Widget',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.widgets.dashboard-feed',                'validation' => 'loose'            ],            'plugins.admin.widgets.dashboard-pages' => [                'type' => 'toggle',                'label' => 'Latest Pages Widget',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.widgets.dashboard-pages',                'validation' => 'loose'            ],            'plugins.admin.Notifications' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.admin.Notifications',                'validation' => 'loose'            ],            'plugins.admin.notifications' => [                'type' => '_parent',                'name' => 'plugins.admin.notifications',                'form_field' => false            ],            'plugins.admin.notifications.feed' => [                'type' => 'toggle',                'label' => 'Feed Notifications',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.notifications.feed',                'validation' => 'loose'            ],            'plugins.admin.notifications.dashboard' => [                'type' => 'toggle',                'label' => 'Dashboard Notifications',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.notifications.dashboard',                'validation' => 'loose'            ],            'plugins.admin.notifications.plugins' => [                'type' => 'toggle',                'label' => 'Plugins Notifications',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.notifications.plugins',                'validation' => 'loose'            ],            'plugins.admin.notifications.themes' => [                'type' => 'toggle',                'label' => 'Themes Notifications',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.notifications.themes',                'validation' => 'loose'            ],            'plugins.admin.Popularity' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.admin.Popularity',                'validation' => 'loose'            ],            'plugins.admin.popularity' => [                'type' => '_parent',                'name' => 'plugins.admin.popularity',                'form_field' => false            ],            'plugins.admin.popularity.enabled' => [                'type' => 'toggle',                'label' => 'Visitor tracking',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin.popularity.enabled',                'validation' => 'loose'            ],            'plugins.admin.dashboard' => [                'type' => '_parent',                'name' => 'plugins.admin.dashboard',                'form_field' => false            ],            'plugins.admin.dashboard.days_of_stats' => [                'type' => 'text',                'label' => 'Days of stats',                'append' => 'days',                'size' => 'x-small',                'default' => 7,                'validate' => [                    'type' => 'int'                ],                'name' => 'plugins.admin.dashboard.days_of_stats',                'validation' => 'loose'            ],            'plugins.admin.popularity.ignore' => [                'type' => 'array',                'label' => 'Ignore',                'size' => 'large',                'default' => [                    0 => '/test*',                    1 => '/modular'                ],                'value_only' => true,                'name' => 'plugins.admin.popularity.ignore',                'validation' => 'loose'            ],            'plugins.admin.popularity.history' => [                'type' => '_parent',                'name' => 'plugins.admin.popularity.history',                'form_field' => false            ],            'plugins.admin.popularity.history.daily' => [                'type' => 'hidden',                'label' => 'Daily history',                'default' => 30,                'name' => 'plugins.admin.popularity.history.daily',                'validation' => 'loose'            ],            'plugins.admin.popularity.history.monthly' => [                'type' => 'hidden',                'label' => 'Monthly history',                'default' => 12,                'name' => 'plugins.admin.popularity.history.monthly',                'validation' => 'loose'            ],            'plugins.admin.popularity.history.visitors' => [                'type' => 'hidden',                'label' => 'Visitors history',                'default' => 20,                'name' => 'plugins.admin.popularity.history.visitors',                'validation' => 'loose'            ],            'plugins.markdown-notices' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.markdown-notices.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.markdown-notices.enabled',                'validation' => 'strict'            ],            'plugins.markdown-notices.built_in_css' => [                'type' => 'toggle',                'label' => 'PLUGIN_MARKDOWN_NOTICES.USE_BUILT_IN_CSS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.markdown-notices.built_in_css',                'validation' => 'strict'            ],            'plugins.markdown-notices.base_classes' => [                'type' => 'selectize',                'label' => 'PLUGIN_MARKDOWN_NOTICES.BASE_CLASSES',                'size' => 'large',                'classes' => 'fancy',                'validate' => [                    'type' => 'string'                ],                'name' => 'plugins.markdown-notices.base_classes',                'validation' => 'strict'            ],            'plugins.markdown-notices.level_classes' => [                'type' => 'selectize',                'label' => 'PLUGIN_MARKDOWN_NOTICES.LEVEL_CLASSES',                'size' => 'large',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'plugins.markdown-notices.level_classes',                'validation' => 'strict'            ],            'plugins.admin-addon-user-manager' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.admin-addon-user-manager.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.admin-addon-user-manager.enabled',                'validation' => 'strict'            ],            'plugins.admin-addon-user-manager.default_list_style' => [                'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.DEFAULT_LIST_STYLE',                'type' => 'select',                'options' => [                    'grid' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.GRID',                    'list' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.LIST'                ],                'name' => 'plugins.admin-addon-user-manager.default_list_style',                'validation' => 'strict'            ],            'plugins.admin-addon-user-manager.pagination' => [                'type' => '_parent',                'name' => 'plugins.admin-addon-user-manager.pagination',                'form_field' => false            ],            'plugins.admin-addon-user-manager.pagination.per_page' => [                'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.USERS_PER_PAGE',                'type' => 'select',                'options' => [                    10 => 10,                    20 => 20,                    30 => 30,                    40 => 40,                    50 => 50,                    60 => 60,                    70 => 70,                    80 => 80,                    90 => 90,                    100 => 100                ],                'name' => 'plugins.admin-addon-user-manager.pagination.per_page',                'validation' => 'strict'            ],            'plugins.admin-addon-user-manager.custom_permissions' => [                'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.CUSTOM_PERMISSIONS',                'type' => 'array',                'value_only' => true,                'name' => 'plugins.admin-addon-user-manager.custom_permissions',                'validation' => 'strict'            ],            'plugins.form' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.form.enabled' => [                'type' => 'hidden',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.enabled',                'validation' => 'strict'            ],            'plugins.form.built_in_css' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.USE_BUILT_IN_CSS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.built_in_css',                'validation' => 'strict'            ],            'plugins.form.inline_css' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.USE_INLINE_CSS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.inline_css',                'validation' => 'strict'            ],            'plugins.form.refresh_prevention' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.REFRESH_PREVENTION',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.refresh_prevention',                'validation' => 'strict'            ],            'plugins.form.client_side_validation' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.CLIENT_SIDE_VALIDATION',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.client_side_validation',                'validation' => 'strict'            ],            'plugins.form.inline_errors' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.INLINE_ERRORS',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.inline_errors',                'validation' => 'strict'            ],            'plugins.form.general' => [                'type' => 'section',                'name' => 'plugins.form.general',                'validation' => 'strict'            ],            'plugins.form.files' => [                'type' => 'section',                'name' => 'plugins.form.files',                'validation' => 'strict'            ],            'plugins.form.files.multiple' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.ALLOW_MULTIPLE',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.files.multiple',                'validation' => 'strict'            ],            'plugins.form.files.limit' => [                'type' => 'text',                'size' => 'x-small',                'label' => 'PLUGIN_FORM.LIMIT',                'default' => 10,                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.form.files.limit',                'validation' => 'strict'            ],            'plugins.form.files.destination' => [                'type' => 'text',                'size' => 'large',                'label' => 'PLUGIN_FORM.DESTINATION',                'default' => '@self',                'name' => 'plugins.form.files.destination',                'validation' => 'strict'            ],            'plugins.form.files.accept' => [                'type' => 'selectize',                'size' => 'large',                'label' => 'PLUGIN_FORM.ACCEPT',                'classes' => 'fancy',                'default' => [                    0 => 'image/*'                ],                'validate' => [                    'type' => 'commalist'                ],                'name' => 'plugins.form.files.accept',                'validation' => 'strict'            ],            'plugins.form.files.filesize' => [                'type' => 'text',                'label' => 'PLUGIN_FORM.FILESIZE',                'size' => 'x-small',                'default' => 5,                'validate' => [                    'type' => 'number',                    'min' => 0                ],                'name' => 'plugins.form.files.filesize',                'validation' => 'strict'            ],            'plugins.form.files.avoid_overwriting' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.AVOID_OVERWRITING',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.files.avoid_overwriting',                'validation' => 'strict'            ],            'plugins.form.files.random_name' => [                'type' => 'toggle',                'label' => 'PLUGIN_FORM.RANDOM_NAME',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.form.files.random_name',                'validation' => 'strict'            ],            'plugins.form.recaptcha' => [                'type' => 'section',                'name' => 'plugins.form.recaptcha',                'validation' => 'strict'            ],            'plugins.form.recaptcha.version' => [                'type' => 'select',                'label' => 'PLUGIN_FORM.RECAPTCHA_VERSION',                'default' => '2-checkbox',                'options' => [                    '2-checkbox' => 'PLUGIN_FORM.RECAPTCHA_VERSION_V2_CHECKBOX',                    '2-invisible' => 'PLUGIN_FORM.RECAPTCHA_VERSION_V2_INVISIBLE',                    3 => 'PLUGIN_FORM.RECAPTCHA_VERSION_V3_LATEST'                ],                'name' => 'plugins.form.recaptcha.version',                'validation' => 'strict'            ],            'plugins.form.recaptcha.theme' => [                'type' => 'select',                'label' => 'PLUGIN_FORM.RECAPTCHA_THEME',                'default' => 'light',                'options' => [                    'light' => 'PLUGIN_FORM.RECAPTCHA_THEME_LIGHT',                    'dark' => 'PLUGIN_FORM.RECAPTCHA_THEME_DARK'                ],                'recaptcha.site_key' => NULL,                'name' => 'plugins.form.recaptcha.theme',                'validation' => 'strict'            ],            'plugins.form.recaptcha.site_key' => [                'type' => 'text',                'label' => 'PLUGIN_FORM.RECAPTCHA_SITE_KEY',                'default' => '',                'name' => 'plugins.form.recaptcha.site_key',                'validation' => 'strict'            ],            'plugins.form.recaptcha.secret_key' => [                'type' => 'text',                'label' => 'PLUGIN_FORM.RECAPTCHA_SECRET_KEY',                'default' => '',                'name' => 'plugins.form.recaptcha.secret_key',                'validation' => 'strict'            ],            'plugins.login' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'plugins.login.enabled' => [                'type' => 'hidden',                'label' => 'PLUGIN_LOGIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.enabled',                'validation' => 'loose'            ],            'plugins.login.built_in_css' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.BUILTIN_CSS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.built_in_css',                'validation' => 'loose'            ],            'plugins.login.redirect_to_login' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.REDIRECT_TO_LOGIN',                'default' => 0,                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.redirect_to_login',                'validation' => 'loose'            ],            'plugins.login.redirect_after_login' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.REDIRECT_AFTER_LOGIN',                'force_bool' => true,                'default' => 0,                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.redirect_after_login',                'validation' => 'loose'            ],            'plugins.login.redirect_after_logout' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.REDIRECT_AFTER_LOGOUT',                'force_bool' => true,                'default' => 1,                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.redirect_after_logout',                'validation' => 'loose'            ],            'plugins.login.parent_acl' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.USE_PARENT_ACL_LABEL',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.parent_acl',                'validation' => 'loose'            ],            'plugins.login.dynamic_page_visibility' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.DYNAMIC_VISIBILITY',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.dynamic_page_visibility',                'validation' => 'loose'            ],            'plugins.login.twofa_enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.2FA_ENABLED',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.twofa_enabled',                'validation' => 'loose'            ],            'plugins.login.protect_protected_page_media' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.PROTECT_PROTECTED_PAGE_MEDIA_LABEL',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.protect_protected_page_media',                'validation' => 'loose'            ],            'plugins.login.session_user_sync' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.SESSION_USER_SYNC',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.session_user_sync',                'validation' => 'loose'            ],            'plugins.login.rememberme' => [                'type' => 'section',                'name' => 'plugins.login.rememberme',                'validation' => 'loose'            ],            'plugins.login.rememberme.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ENABLED',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.rememberme.enabled',                'validation' => 'loose'            ],            'plugins.login.rememberme.timeout' => [                'type' => 'text',                'size' => 'small',                'default' => 604800,                'label' => 'PLUGIN_ADMIN.TIMEOUT',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.login.rememberme.timeout',                'validation' => 'loose'            ],            'plugins.login.rememberme.name' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_ADMIN.NAME',                'name' => 'plugins.login.rememberme.name',                'validation' => 'loose'            ],            'plugins.login.options' => [                'type' => 'section',                'name' => 'plugins.login.options',                'validation' => 'loose'            ],            'plugins.login.route' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE',                'name' => 'plugins.login.route',                'validation' => 'loose'            ],            'plugins.login.route_after_login' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_AFTER_LOGIN',                'data-default@' => '\\Grav\\Plugin\\LoginPlugin::defaultRedirectAfterLogin',                'name' => 'plugins.login.route_after_login',                'validation' => 'loose'            ],            'plugins.login.route_after_logout' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_AFTER_LOGOUT',                'data-default@' => '\\Grav\\Plugin\\LoginPlugin::defaultRedirectAfterLogout',                'name' => 'plugins.login.route_after_logout',                'validation' => 'loose'            ],            'plugins.login.route_forgot' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_FORGOT',                'name' => 'plugins.login.route_forgot',                'validation' => 'loose'            ],            'plugins.login.route_reset' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_RESET',                'name' => 'plugins.login.route_reset',                'validation' => 'loose'            ],            'plugins.login.route_profile' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_PROFILE',                'name' => 'plugins.login.route_profile',                'validation' => 'loose'            ],            'plugins.login.route_activate' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_ACTIVATE',                'name' => 'plugins.login.route_activate',                'validation' => 'loose'            ],            'plugins.login.user_registration' => [                'type' => '_parent',                'name' => 'plugins.login.user_registration',                'form_field' => false            ],            'plugins.login.user_registration.redirect_after_activation' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.REDIRECT_AFTER_ACTIVATION',                'name' => 'plugins.login.user_registration.redirect_after_activation',                'validation' => 'loose'            ],            'plugins.login.route_register' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.ROUTE_REGISTER',                'name' => 'plugins.login.route_register',                'validation' => 'loose'            ],            'plugins.login.user_registration.redirect_after_registration' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_LOGIN.REDIRECT_AFTER_REGISTRATION',                'name' => 'plugins.login.user_registration.redirect_after_registration',                'validation' => 'loose'            ],            'plugins.login.routes' => [                'type' => 'tab',                'name' => 'plugins.login.routes',                'validation' => 'loose'            ],            'plugins.login.user_registration.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.ENABLED',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.enabled',                'validation' => 'loose'            ],            'plugins.login.user_registration.fields' => [                'type' => 'array',                'value_only' => true,                'label' => 'PLUGIN_LOGIN.REGISTRATION_FIELDS',                'name' => 'plugins.login.user_registration.fields',                'validation' => 'loose'            ],            'plugins.login.user_registration.default_values' => [                'type' => 'array',                'label' => 'PLUGIN_LOGIN.DEFAULT_VALUES',                'name' => 'plugins.login.user_registration.default_values',                'validation' => 'loose'            ],            'plugins.login.registration_fields' => [                'type' => 'section',                'name' => 'plugins.login.registration_fields',                'validation' => 'loose'            ],            'plugins.login.user_registration.groups' => [                'type' => 'select',                'multiple' => true,                'size' => 'large',                'label' => 'PLUGIN_ADMIN.GROUPS',                'data-options@' => '\\Grav\\Common\\User\\Group::groupNames',                'classes' => 'fancy',                'validate' => [                    'type' => 'commalist'                ],                'name' => 'plugins.login.user_registration.groups',                'validation' => 'loose'            ],            'plugins.login.user_registration.access' => [                'type' => '_parent',                'name' => 'plugins.login.user_registration.access',                'form_field' => false            ],            'plugins.login.user_registration.access.site' => [                'type' => 'array',                'label' => 'PLUGIN_ADMIN.SITE_ACCESS',                'multiple' => false,                'validate' => [                    'type' => 'array'                ],                'name' => 'plugins.login.user_registration.access.site',                'validation' => 'loose'            ],            'plugins.login.access_levels' => [                'type' => 'section',                'security' => 'admin.super',                'name' => 'plugins.login.access_levels',                'validation' => 'loose'            ],            'plugins.login.user_registration.options' => [                'type' => '_parent',                'name' => 'plugins.login.user_registration.options',                'form_field' => false            ],            'plugins.login.user_registration.options.validate_password1_and_password2' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.VALIDATE_PASSWORD1_AND_PASSWORD2',                'highlight' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.validate_password1_and_password2',                'validation' => 'loose'            ],            'plugins.login.user_registration.options.set_user_disabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.SET_USER_DISABLED',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.set_user_disabled',                'validation' => 'loose'            ],            'plugins.login.user_registration.options.login_after_registration' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.LOGIN_AFTER_REGISTRATION',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.login_after_registration',                'validation' => 'loose'            ],            'plugins.login.user_registration.options.send_activation_email' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.SEND_ACTIVATION_EMAIL',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.send_activation_email',                'validation' => 'loose'            ],            'plugins.login.user_registration.options.manually_enable' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.MANUALLY_ENABLE',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.manually_enable',                'validation' => 'loose'            ],            'plugins.login.user_registration.options.send_notification_email' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.SEND_NOTIFICATION_EMAIL',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.send_notification_email',                'validation' => 'loose'            ],            'plugins.login.user_registration.options.send_welcome_email' => [                'type' => 'toggle',                'label' => 'PLUGIN_LOGIN.SEND_WELCOME_EMAIL',                'highlight' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.YES',                    0 => 'PLUGIN_ADMIN.NO'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.login.user_registration.options.send_welcome_email',                'validation' => 'loose'            ],            'plugins.login.registration' => [                'type' => 'tab',                'name' => 'plugins.login.registration',                'validation' => 'loose'            ],            'plugins.login.max_pw_resets_count' => [                'type' => 'number',                'size' => 'x-small',                'label' => 'PLUGIN_LOGIN.MAX_RESETS_COUNT',                'append' => 'PLUGIN_LOGIN.RESETS',                'validate' => [                    'type' => 'number',                    'min' => 0                ],                'name' => 'plugins.login.max_pw_resets_count',                'validation' => 'loose'            ],            'plugins.login.max_pw_resets_interval' => [                'type' => 'number',                'size' => 'x-small',                'label' => 'PLUGIN_LOGIN.MAX_RESETS_INTERVAL',                'append' => 'PLUGIN_LOGIN.MINUTES',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.login.max_pw_resets_interval',                'validation' => 'loose'            ],            'plugins.login.max_login_count' => [                'type' => 'number',                'size' => 'x-small',                'label' => 'PLUGIN_LOGIN.MAX_LOGINS_COUNT',                'append' => 'PLUGIN_LOGIN.ATTEMPTS',                'validate' => [                    'type' => 'number',                    'min' => 0                ],                'name' => 'plugins.login.max_login_count',                'validation' => 'loose'            ],            'plugins.login.max_login_interval' => [                'type' => 'number',                'size' => 'x-small',                'label' => 'PLUGIN_LOGIN.MAX_LOGINS_INTERVAL',                'append' => 'PLUGIN_LOGIN.MINUTES',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.login.max_login_interval',                'validation' => 'loose'            ],            'plugins.login.ipv6_subnet_size' => [                'type' => 'number',                'size' => 'x-small',                'label' => 'PLUGIN_LOGIN.IPV6_SUBNET_SIZE',                'append' => 'PLUGIN_LOGIN.MINUTES',                'validate' => [                    'type' => 'number',                    'min' => 1                ],                'name' => 'plugins.login.ipv6_subnet_size',                'validation' => 'loose'            ],            'plugins.login.Security' => [                'type' => 'tab',                'name' => 'plugins.login.Security',                'validation' => 'loose'            ],            'plugins.login.tabs' => [                'type' => 'tabs',                'active' => 1,                'class' => 'subtle',                'name' => 'plugins.login.tabs',                'validation' => 'loose'            ],            'plugins.error' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.error.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.error.enabled',                'validation' => 'strict'            ],            'plugins.error.routes' => [                'type' => '_parent',                'name' => 'plugins.error.routes',                'form_field' => false            ],            'plugins.error.routes.404' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_ERROR.ROUTE_404',                'default' => '/error',                'name' => 'plugins.error.routes.404',                'validation' => 'strict'            ],            'plugins.email' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'loose'                ]            ],            'plugins.email.enabled' => [                'type' => 'hidden',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.email.enabled',                'validation' => 'loose'            ],            'plugins.email.mailer' => [                'type' => '_parent',                'name' => 'plugins.email.mailer',                'form_field' => false            ],            'plugins.email.mailer.engine' => [                'type' => 'select',                'label' => 'PLUGIN_EMAIL.MAIL_ENGINE',                'size' => 'medium',                'options' => [                    'none' => 'PLUGIN_ADMIN.DISABLED',                    'smtp' => 'SMTP',                    'sendmail' => 'Sendmail'                ],                'name' => 'plugins.email.mailer.engine',                'validation' => 'loose'            ],            'plugins.email.content_type' => [                'type' => 'select',                'label' => 'PLUGIN_EMAIL.CONTENT_TYPE',                'size' => 'medium',                'default' => 'text/html',                'options' => [                    'text/plain' => 'PLUGIN_EMAIL.CONTENT_TYPE_PLAIN_TEXT',                    'text/html' => 'HTML'                ],                'name' => 'plugins.email.content_type',                'validation' => 'loose'            ],            'plugins.email.charset' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.CHARSET',                'name' => 'plugins.email.charset',                'validation' => 'loose'            ],            'plugins.email.email_Defaults' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.email.email_Defaults',                'validation' => 'loose'            ],            'plugins.email.from' => [                'type' => 'email',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_FORM',                'validate' => [                    'required' => true,                    'type' => 'email'                ],                'name' => 'plugins.email.from',                'validation' => 'loose'            ],            'plugins.email.from_name' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_FROM_NAME',                'name' => 'plugins.email.from_name',                'validation' => 'loose'            ],            'plugins.email.to' => [                'type' => 'email',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_TO',                'multiple' => true,                'validate' => [                    'required' => true,                    'type' => 'email'                ],                'name' => 'plugins.email.to',                'validation' => 'loose'            ],            'plugins.email.to_name' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_TO_NAME',                'name' => 'plugins.email.to_name',                'validation' => 'loose'            ],            'plugins.email.cc' => [                'type' => 'email',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_CC',                'multiple' => true,                'validate' => [                    'type' => 'email'                ],                'name' => 'plugins.email.cc',                'validation' => 'loose'            ],            'plugins.email.cc_name' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_CC_NAME',                'name' => 'plugins.email.cc_name',                'validation' => 'loose'            ],            'plugins.email.bcc' => [                'type' => 'email',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_BCC',                'multiple' => true,                'validate' => [                    'type' => 'email'                ],                'name' => 'plugins.email.bcc',                'validation' => 'loose'            ],            'plugins.email.reply_to' => [                'type' => 'email',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_REPLY_TO',                'multiple' => true,                'validate' => [                    'type' => 'email'                ],                'name' => 'plugins.email.reply_to',                'validation' => 'loose'            ],            'plugins.email.reply_to_name' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_REPLY_TO_NAME',                'name' => 'plugins.email.reply_to_name',                'validation' => 'loose'            ],            'plugins.email.body' => [                'type' => 'textarea',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.EMAIL_BODY',                'name' => 'plugins.email.body',                'validation' => 'loose'            ],            'plugins.email.smtp_config' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.email.smtp_config',                'validation' => 'loose'            ],            'plugins.email.mailer.smtp' => [                'type' => '_parent',                'name' => 'plugins.email.mailer.smtp',                'form_field' => false            ],            'plugins.email.mailer.smtp.server' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.SMTP_SERVER',                'name' => 'plugins.email.mailer.smtp.server',                'validation' => 'loose'            ],            'plugins.email.mailer.smtp.port' => [                'type' => 'text',                'size' => 'small',                'label' => 'PLUGIN_EMAIL.SMTP_PORT',                'validate' => [                    'type' => 'number',                    'min' => 1,                    'max' => 65535                ],                'name' => 'plugins.email.mailer.smtp.port',                'validation' => 'loose'            ],            'plugins.email.mailer.smtp.encryption' => [                'type' => 'select',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.SMTP_ENCRYPTION',                'options' => [                    'none' => 'PLUGIN_EMAIL.SMTP_ENCRYPTION_NONE',                    'ssl' => 'SSL',                    'tls' => 'TLS'                ],                'name' => 'plugins.email.mailer.smtp.encryption',                'validation' => 'loose'            ],            'plugins.email.mailer.smtp.user' => [                'type' => 'text',                'size' => 'medium',                'autocomplete' => 'off',                'label' => 'PLUGIN_EMAIL.SMTP_LOGIN_NAME',                'name' => 'plugins.email.mailer.smtp.user',                'validation' => 'loose'            ],            'plugins.email.mailer.smtp.password' => [                'type' => 'password',                'size' => 'medium',                'autocomplete' => 'new-password',                'label' => 'PLUGIN_EMAIL.SMTP_PASSWORD',                'name' => 'plugins.email.mailer.smtp.password',                'validation' => 'loose'            ],            'plugins.email.sendmail_config' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.email.sendmail_config',                'validation' => 'loose'            ],            'plugins.email.mailer.sendmail' => [                'type' => '_parent',                'name' => 'plugins.email.mailer.sendmail',                'form_field' => false            ],            'plugins.email.mailer.sendmail.bin' => [                'type' => 'text',                'size' => 'medium',                'label' => 'PLUGIN_EMAIL.PATH_TO_SENDMAIL',                'name' => 'plugins.email.mailer.sendmail.bin',                'validation' => 'loose'            ],            'plugins.email.queue_section' => [                'type' => 'section',                'text' => 'PLUGIN_EMAIL.QUEUE_DESC',                'markdown' => true,                'underline' => true,                'name' => 'plugins.email.queue_section',                'validation' => 'loose'            ],            'plugins.email.queue' => [                'type' => '_parent',                'name' => 'plugins.email.queue',                'form_field' => false            ],            'plugins.email.queue.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_EMAIL.QUEUE_ENABLED',                'highlight' => 0,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.email.queue.enabled',                'validation' => 'loose'            ],            'plugins.email.queue.flush_frequency' => [                'type' => 'cron',                'label' => 'PLUGIN_EMAIL.QUEUE_FLUSH_FREQUENCY',                'size' => 'medium',                'default' => '* * * * *',                'name' => 'plugins.email.queue.flush_frequency',                'validation' => 'loose'            ],            'plugins.email.queue.flush_msg_limit' => [                'type' => 'number',                'label' => 'PLUGIN_EMAIL.QUEUE_FLUSH_MSG_LIMIT',                'size' => 'x-small',                'append' => 'PLUGIN_EMAIL.QUEUE_FLUSH_MSG_LIMIT_APPEND',                'name' => 'plugins.email.queue.flush_msg_limit',                'validation' => 'loose'            ],            'plugins.email.queue.flush_time_limit' => [                'type' => 'number',                'label' => 'PLUGIN_EMAIL.QUEUE_FLUSH_TIME_LIMIT',                'size' => 'x-small',                'append' => 'PLUGIN_EMAIL.QUEUE_FLUSH_TIME_LIMIT_APPEND',                'name' => 'plugins.email.queue.flush_time_limit',                'validation' => 'loose'            ],            'plugins.email.advanced_section' => [                'type' => 'section',                'underline' => true,                'name' => 'plugins.email.advanced_section',                'validation' => 'loose'            ],            'plugins.email.debug' => [                'type' => 'toggle',                'label' => 'PLUGIN_EMAIL.DEBUG',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.email.debug',                'validation' => 'loose'            ],            'plugins.taxonomylist' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.taxonomylist.enabled' => [                'type' => 'toggle',                'label' => 'Plugin status',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'Enabled',                    0 => 'Disabled'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.taxonomylist.enabled',                'validation' => 'strict'            ],            'plugins.taxonomylist.route' => [                'type' => 'text',                'label' => 'Route to blog',                'validate' => [                    'pattern' => '/([a-z\\-_]+/?)+'                ],                'name' => 'plugins.taxonomylist.route',                'validation' => 'strict'            ],            'plugins.vimeo' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.vimeo.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.enabled',                'validation' => 'strict'            ],            'plugins.vimeo.plugin_css' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.PLUGIN_CSS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.plugin_css',                'validation' => 'strict'            ],            'plugins.vimeo.editor_button' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.EDITOR_BUTTON',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.editor_button',                'validation' => 'strict'            ],            'plugins.vimeo.general' => [                'type' => 'tab',                'name' => 'plugins.vimeo.general',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters' => [                'type' => 'tab',                'name' => 'plugins.vimeo.player_parameters',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.autoplay' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.AUTOPLAY',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.player_parameters.autoplay',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.autopause' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.AUTOPAUSE',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.player_parameters.autopause',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.loop' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.LOOP',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.player_parameters.loop',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.player_id' => [                'type' => 'text',                'label' => 'PLUGIN_VIMEO.PLAYER_ID',                'size' => 'medium',                'name' => 'plugins.vimeo.player_parameters.player_id',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.title' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.TITLE',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.player_parameters.title',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.portrait' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.PORTRAIT',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.player_parameters.portrait',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.byline' => [                'type' => 'toggle',                'label' => 'PLUGIN_VIMEO.BYLINE',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_VIMEO.ENABLED',                    0 => 'PLUGIN_VIMEO.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.vimeo.player_parameters.byline',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.color' => [                'type' => 'colorpicker',                'label' => 'PLUGIN_VIMEO.COLOR',                'highlight' => 1,                'default' => '#00adef',                'name' => 'plugins.vimeo.player_parameters.color',                'validation' => 'strict'            ],            'plugins.vimeo.player_parameters.view' => [                'type' => 'section',                'text' => 'PLUGIN_VIMEO.PLAYER_VIEW_TEXT',                'underline' => true,                'name' => 'plugins.vimeo.player_parameters.view',                'validation' => 'strict'            ],            'plugins.vimeo.tabs' => [                'type' => 'tabs',                'active' => 1,                'class' => 'subtle',                'name' => 'plugins.vimeo.tabs',                'validation' => 'strict'            ],            'plugins.problems' => [                'type' => '_root',                'form_field' => false,                'form' => [                    'validation' => 'strict'                ]            ],            'plugins.problems.enabled' => [                'type' => 'toggle',                'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',                'highlight' => 1,                'default' => 0,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.problems.enabled',                'validation' => 'strict'            ],            'plugins.problems.built_in_css' => [                'type' => 'toggle',                'label' => 'PLUGIN_PROBLEMS.BUILTIN_CSS',                'highlight' => 1,                'default' => 1,                'options' => [                    1 => 'PLUGIN_ADMIN.ENABLED',                    0 => 'PLUGIN_ADMIN.DISABLED'                ],                'validate' => [                    'type' => 'bool'                ],                'name' => 'plugins.problems.built_in_css',                'validation' => 'strict'            ]        ],        'rules' => [                    ],        'nested' => [            'backups' => [                'history_title' => 'backups.history_title',                'history' => 'backups.history',                'config_title' => 'backups.config_title',                'purge' => [                    'trigger' => 'backups.purge.trigger',                    'max_backups_count' => 'backups.purge.max_backups_count',                    'max_backups_space' => 'backups.purge.max_backups_space',                    'max_backups_time' => 'backups.purge.max_backups_time'                ],                'profiles_title' => 'backups.profiles_title',                'profiles' => [                    'name' => 'backups.profiles.name',                    'root' => 'backups.profiles.root',                    'exclude_paths' => 'backups.profiles.exclude_paths',                    'exclude_files' => 'backups.profiles.exclude_files',                    'schedule' => 'backups.profiles.schedule',                    'schedule_at' => 'backups.profiles.schedule_at'                ]            ],            'media' => 'media',            'scheduler' => [                'status_title' => 'scheduler.status_title',                'status' => 'scheduler.status',                'jobs_title' => 'scheduler.jobs_title',                'custom_jobs' => [                    'id' => 'scheduler.custom_jobs.id',                    'command' => 'scheduler.custom_jobs.command',                    'args' => 'scheduler.custom_jobs.args',                    'at' => 'scheduler.custom_jobs.at',                    'output' => 'scheduler.custom_jobs.output',                    'output_mode' => 'scheduler.custom_jobs.output_mode',                    'email' => 'scheduler.custom_jobs.email'                ]            ],            'security' => [                'xss_section' => 'security.xss_section',                'xss_whitelist' => 'security.xss_whitelist',                'xss_enabled' => [                    'on_events' => 'security.xss_enabled.on_events',                    'invalid_protocols' => 'security.xss_enabled.invalid_protocols',                    'moz_binding' => 'security.xss_enabled.moz_binding',                    'html_inline_styles' => 'security.xss_enabled.html_inline_styles',                    'dangerous_tags' => 'security.xss_enabled.dangerous_tags'                ],                'xss_invalid_protocols' => 'security.xss_invalid_protocols',                'xss_dangerous_tags' => 'security.xss_dangerous_tags',                'uploads_section' => 'security.uploads_section',                'uploads_dangerous_extensions' => 'security.uploads_dangerous_extensions'            ],            'site' => [                'content' => 'site.content',                'title' => 'site.title',                'default_lang' => 'site.default_lang',                'author' => [                    'name' => 'site.author.name',                    'email' => 'site.author.email'                ],                'taxonomies' => 'site.taxonomies',                'summary' => [                    'enabled' => 'site.summary.enabled',                    'size' => 'site.summary.size',                    'format' => 'site.summary.format',                    'delimiter' => 'site.summary.delimiter'                ],                'metadata' => 'site.metadata',                'routes' => 'site.routes',                'redirects' => 'site.redirects'            ],            'streams' => [                'schemes' => [                    'xxx' => 'streams.schemes.xxx'                ]            ],            'system' => [                'system_tabs' => 'system.system_tabs',                'content' => 'system.content',                'content_section' => 'system.content_section',                'home' => [                    'alias' => 'system.home.alias',                    'hide_in_urls' => 'system.home.hide_in_urls'                ],                'pages' => [                    'theme' => 'system.pages.theme',                    'process' => 'system.pages.process',                    'types' => 'system.pages.types',                    'dateformat' => [                        'default' => 'system.pages.dateformat.default',                        'short' => 'system.pages.dateformat.short',                        'long' => 'system.pages.dateformat.long'                    ],                    'order' => [                        'by' => 'system.pages.order.by',                        'dir' => 'system.pages.order.dir'                    ],                    'list' => [                        'count' => 'system.pages.list.count'                    ],                    'publish_dates' => 'system.pages.publish_dates',                    'events' => 'system.pages.events',                    'append_url_extension' => 'system.pages.append_url_extension',                    'redirect_default_route' => 'system.pages.redirect_default_route',                    'redirect_default_code' => 'system.pages.redirect_default_code',                    'redirect_trailing_slash' => 'system.pages.redirect_trailing_slash',                    'ignore_hidden' => 'system.pages.ignore_hidden',                    'ignore_files' => 'system.pages.ignore_files',                    'ignore_folders' => 'system.pages.ignore_folders',                    'hide_empty_folders' => 'system.pages.hide_empty_folders',                    'url_taxonomy_filters' => 'system.pages.url_taxonomy_filters',                    'twig_first' => 'system.pages.twig_first',                    'never_cache_twig' => 'system.pages.never_cache_twig',                    'frontmatter' => [                        'process_twig' => 'system.pages.frontmatter.process_twig',                        'ignore_fields' => 'system.pages.frontmatter.ignore_fields'                    ],                    'expires' => 'system.pages.expires',                    'cache_control' => 'system.pages.cache_control',                    'last_modified' => 'system.pages.last_modified',                    'etag' => 'system.pages.etag',                    'vary_accept_encoding' => 'system.pages.vary_accept_encoding',                    'markdown' => [                        'extra' => 'system.pages.markdown.extra',                        'auto_line_breaks' => 'system.pages.markdown.auto_line_breaks',                        'auto_url_links' => 'system.pages.markdown.auto_url_links',                        'escape_markup' => 'system.pages.markdown.escape_markup',                        'valid_link_attributes' => 'system.pages.markdown.valid_link_attributes'                    ]                ],                'timezone' => 'system.timezone',                'languages' => [                    'supported' => 'system.languages.supported',                    'default_lang' => 'system.languages.default_lang',                    'include_default_lang' => 'system.languages.include_default_lang',                    'pages_fallback_only' => 'system.languages.pages_fallback_only',                    'translations' => 'system.languages.translations',                    'translations_fallback' => 'system.languages.translations_fallback',                    'session_store_active' => 'system.languages.session_store_active',                    'http_accept_language' => 'system.languages.http_accept_language',                    'override_locale' => 'system.languages.override_locale'                ],                'languages-section' => 'system.languages-section',                'http_headers' => 'system.http_headers',                'http_headers_section' => 'system.http_headers_section',                'markdown' => 'system.markdown',                'markdow_section' => 'system.markdow_section',                'caching' => 'system.caching',                'caching_section' => 'system.caching_section',                'cache' => [                    'enabled' => 'system.cache.enabled',                    'check' => [                        'method' => 'system.cache.check.method'                    ],                    'driver' => 'system.cache.driver',                    'prefix' => 'system.cache.prefix',                    'purge_at' => 'system.cache.purge_at',                    'clear_at' => 'system.cache.clear_at',                    'clear_job_type' => 'system.cache.clear_job_type',                    'clear_images_by_default' => 'system.cache.clear_images_by_default',                    'cli_compatibility' => 'system.cache.cli_compatibility',                    'lifetime' => 'system.cache.lifetime',                    'gzip' => 'system.cache.gzip',                    'allow_webserver_gzip' => 'system.cache.allow_webserver_gzip',                    'memcache' => [                        'server' => 'system.cache.memcache.server',                        'port' => 'system.cache.memcache.port'                    ],                    'memcached' => [                        'server' => 'system.cache.memcached.server',                        'port' => 'system.cache.memcached.port'                    ],                    'redis' => [                        'socket' => 'system.cache.redis.socket',                        'server' => 'system.cache.redis.server',                        'port' => 'system.cache.redis.port',                        'password' => 'system.cache.redis.password'                    ]                ],                'twig' => [                    'cache' => 'system.twig.cache',                    'debug' => 'system.twig.debug',                    'auto_reload' => 'system.twig.auto_reload',                    'autoescape' => 'system.twig.autoescape',                    'umask_fix' => 'system.twig.umask_fix'                ],                'twig_section' => 'system.twig_section',                'assets' => [                    'css_pipeline' => 'system.assets.css_pipeline',                    'css_pipeline_include_externals' => 'system.assets.css_pipeline_include_externals',                    'css_pipeline_before_excludes' => 'system.assets.css_pipeline_before_excludes',                    'css_minify' => 'system.assets.css_minify',                    'css_minify_windows' => 'system.assets.css_minify_windows',                    'css_rewrite' => 'system.assets.css_rewrite',                    'js_pipeline' => 'system.assets.js_pipeline',                    'js_pipeline_include_externals' => 'system.assets.js_pipeline_include_externals',                    'js_pipeline_before_excludes' => 'system.assets.js_pipeline_before_excludes',                    'js_minify' => 'system.assets.js_minify',                    'enable_asset_timestamp' => 'system.assets.enable_asset_timestamp',                    'collections' => 'system.assets.collections'                ],                'assets_section' => 'system.assets_section',                'errors' => [                    'display' => 'system.errors.display',                    'log' => 'system.errors.log'                ],                'errors_section' => 'system.errors_section',                'log' => [                    'handler' => 'system.log.handler',                    'syslog' => [                        'facility' => 'system.log.syslog.facility'                    ]                ],                'debugger' => [                    'enabled' => 'system.debugger.enabled',                    'shutdown' => [                        'close_connection' => 'system.debugger.shutdown.close_connection'                    ]                ],                'debugger_section' => 'system.debugger_section',                'media' => [                    'enable_media_timestamp' => 'system.media.enable_media_timestamp',                    'auto_metadata_exif' => 'system.media.auto_metadata_exif',                    'allowed_fallback_types' => 'system.media.allowed_fallback_types',                    'unsupported_inline_types' => 'system.media.unsupported_inline_types'                ],                'media_section' => 'system.media_section',                'images' => [                    'default_image_quality' => 'system.images.default_image_quality',                    'cache_all' => 'system.images.cache_all',                    'cache_perms' => 'system.images.cache_perms',                    'debug' => 'system.images.debug',                    'auto_fix_orientation' => 'system.images.auto_fix_orientation',                    'seofriendly' => 'system.images.seofriendly'                ],                'session' => [                    'enabled' => 'system.session.enabled',                    'initialize' => 'system.session.initialize',                    'timeout' => 'system.session.timeout',                    'name' => 'system.session.name',                    'uniqueness' => 'system.session.uniqueness',                    'secure' => 'system.session.secure',                    'httponly' => 'system.session.httponly',                    'path' => 'system.session.path',                    'split' => 'system.session.split'                ],                'session_section' => 'system.session_section',                'advanced' => 'system.advanced',                'advanced_section' => 'system.advanced_section',                'gpm' => [                    'releases' => 'system.gpm.releases',                    'proxy_url' => 'system.gpm.proxy_url',                    'method' => 'system.gpm.method',                    'official_gpm_only' => 'system.gpm.official_gpm_only',                    'verify_peer' => 'system.gpm.verify_peer'                ],                'reverse_proxy_setup' => 'system.reverse_proxy_setup',                'username_regex' => 'system.username_regex',                'pwd_regex' => 'system.pwd_regex',                'intl_enabled' => 'system.intl_enabled',                'wrapped_site' => 'system.wrapped_site',                'absolute_urls' => 'system.absolute_urls',                'param_sep' => 'system.param_sep',                'force_ssl' => 'system.force_ssl',                'force_lowercase_urls' => 'system.force_lowercase_urls',                'custom_base_url' => 'system.custom_base_url',                'http_x_forwarded' => [                    'protocol' => 'system.http_x_forwarded.protocol',                    'host' => 'system.http_x_forwarded.host',                    'port' => 'system.http_x_forwarded.port',                    'ip' => 'system.http_x_forwarded.ip'                ],                'accounts' => [                    'type' => 'system.accounts.type',                    'storage' => 'system.accounts.storage'                ],                'strict_mode' => [                    'yaml_compat' => 'system.strict_mode.yaml_compat',                    'twig_compat' => 'system.strict_mode.twig_compat'                ]            ],            'plugins' => [                'admin' => [                    'Basics' => 'plugins.admin.Basics',                    'enabled' => 'plugins.admin.enabled',                    'cache_enabled' => 'plugins.admin.cache_enabled',                    'twofa_enabled' => 'plugins.admin.twofa_enabled',                    'route' => 'plugins.admin.route',                    'logo_text' => 'plugins.admin.logo_text',                    'content_padding' => 'plugins.admin.content_padding',                    'body_classes' => 'plugins.admin.body_classes',                    'sidebar' => [                        'activate' => 'plugins.admin.sidebar.activate',                        'hover_delay' => 'plugins.admin.sidebar.hover_delay',                        'size' => 'plugins.admin.sidebar.size'                    ],                    'theme' => 'plugins.admin.theme',                    'edit_mode' => 'plugins.admin.edit_mode',                    'frontend_preview_target' => 'plugins.admin.frontend_preview_target',                    'pages' => [                        'show_parents' => 'plugins.admin.pages.show_parents',                        'parents_levels' => 'plugins.admin.pages.parents_levels',                        'show_modular' => 'plugins.admin.pages.show_modular'                    ],                    'google_fonts' => 'plugins.admin.google_fonts',                    'show_beta_msg' => 'plugins.admin.show_beta_msg',                    'show_github_msg' => 'plugins.admin.show_github_msg',                    'pages_list_display_field' => 'plugins.admin.pages_list_display_field',                    'enable_auto_updates_check' => 'plugins.admin.enable_auto_updates_check',                    'session' => [                        'timeout' => 'plugins.admin.session.timeout'                    ],                    'warnings' => [                        'delete_page' => 'plugins.admin.warnings.delete_page',                        'secure_delete' => 'plugins.admin.warnings.secure_delete'                    ],                    'hide_page_types' => 'plugins.admin.hide_page_types',                    'hide_modular_page_types' => 'plugins.admin.hide_modular_page_types',                    'log_viewer_files' => 'plugins.admin.log_viewer_files',                    'MediaResize' => 'plugins.admin.MediaResize',                    'MediaResizeNote' => 'plugins.admin.MediaResizeNote',                    'pagemedia' => [                        'resize_width' => 'plugins.admin.pagemedia.resize_width',                        'resize_height' => 'plugins.admin.pagemedia.resize_height',                        'res_min_width' => 'plugins.admin.pagemedia.res_min_width',                        'res_min_height' => 'plugins.admin.pagemedia.res_min_height',                        'res_max_width' => 'plugins.admin.pagemedia.res_max_width',                        'res_max_height' => 'plugins.admin.pagemedia.res_max_height',                        'resize_quality' => 'plugins.admin.pagemedia.resize_quality'                    ],                    'Dashboard' => 'plugins.admin.Dashboard',                    'widgets' => [                        'dashboard-maintenance' => 'plugins.admin.widgets.dashboard-maintenance',                        'dashboard-statistics' => 'plugins.admin.widgets.dashboard-statistics',                        'dashboard-notifications' => 'plugins.admin.widgets.dashboard-notifications',                        'dashboard-feed' => 'plugins.admin.widgets.dashboard-feed',                        'dashboard-pages' => 'plugins.admin.widgets.dashboard-pages'                    ],                    'Notifications' => 'plugins.admin.Notifications',                    'notifications' => [                        'feed' => 'plugins.admin.notifications.feed',                        'dashboard' => 'plugins.admin.notifications.dashboard',                        'plugins' => 'plugins.admin.notifications.plugins',                        'themes' => 'plugins.admin.notifications.themes'                    ],                    'Popularity' => 'plugins.admin.Popularity',                    'popularity' => [                        'enabled' => 'plugins.admin.popularity.enabled',                        'ignore' => 'plugins.admin.popularity.ignore',                        'history' => [                            'daily' => 'plugins.admin.popularity.history.daily',                            'monthly' => 'plugins.admin.popularity.history.monthly',                            'visitors' => 'plugins.admin.popularity.history.visitors'                        ]                    ],                    'dashboard' => [                        'days_of_stats' => 'plugins.admin.dashboard.days_of_stats'                    ]                ],                'markdown-notices' => [                    'enabled' => 'plugins.markdown-notices.enabled',                    'built_in_css' => 'plugins.markdown-notices.built_in_css',                    'base_classes' => 'plugins.markdown-notices.base_classes',                    'level_classes' => 'plugins.markdown-notices.level_classes'                ],                'admin-addon-user-manager' => [                    'enabled' => 'plugins.admin-addon-user-manager.enabled',                    'default_list_style' => 'plugins.admin-addon-user-manager.default_list_style',                    'pagination' => [                        'per_page' => 'plugins.admin-addon-user-manager.pagination.per_page'                    ],                    'custom_permissions' => 'plugins.admin-addon-user-manager.custom_permissions'                ],                'form' => [                    'enabled' => 'plugins.form.enabled',                    'general' => 'plugins.form.general',                    'built_in_css' => 'plugins.form.built_in_css',                    'inline_css' => 'plugins.form.inline_css',                    'refresh_prevention' => 'plugins.form.refresh_prevention',                    'client_side_validation' => 'plugins.form.client_side_validation',                    'inline_errors' => 'plugins.form.inline_errors',                    'files' => [                        'multiple' => 'plugins.form.files.multiple',                        'limit' => 'plugins.form.files.limit',                        'destination' => 'plugins.form.files.destination',                        'accept' => 'plugins.form.files.accept',                        'filesize' => 'plugins.form.files.filesize',                        'avoid_overwriting' => 'plugins.form.files.avoid_overwriting',                        'random_name' => 'plugins.form.files.random_name'                    ],                    'recaptcha' => [                        'version' => 'plugins.form.recaptcha.version',                        'theme' => 'plugins.form.recaptcha.theme',                        'site_key' => 'plugins.form.recaptcha.site_key',                        'secret_key' => 'plugins.form.recaptcha.secret_key'                    ]                ],                'login' => [                    'tabs' => 'plugins.login.tabs',                    'options' => 'plugins.login.options',                    'enabled' => 'plugins.login.enabled',                    'built_in_css' => 'plugins.login.built_in_css',                    'redirect_to_login' => 'plugins.login.redirect_to_login',                    'redirect_after_login' => 'plugins.login.redirect_after_login',                    'redirect_after_logout' => 'plugins.login.redirect_after_logout',                    'parent_acl' => 'plugins.login.parent_acl',                    'dynamic_page_visibility' => 'plugins.login.dynamic_page_visibility',                    'twofa_enabled' => 'plugins.login.twofa_enabled',                    'protect_protected_page_media' => 'plugins.login.protect_protected_page_media',                    'session_user_sync' => 'plugins.login.session_user_sync',                    'rememberme' => [                        'enabled' => 'plugins.login.rememberme.enabled',                        'timeout' => 'plugins.login.rememberme.timeout',                        'name' => 'plugins.login.rememberme.name'                    ],                    'routes' => 'plugins.login.routes',                    'route' => 'plugins.login.route',                    'route_after_login' => 'plugins.login.route_after_login',                    'route_after_logout' => 'plugins.login.route_after_logout',                    'route_forgot' => 'plugins.login.route_forgot',                    'route_reset' => 'plugins.login.route_reset',                    'route_profile' => 'plugins.login.route_profile',                    'route_activate' => 'plugins.login.route_activate',                    'user_registration' => [                        'redirect_after_activation' => 'plugins.login.user_registration.redirect_after_activation',                        'redirect_after_registration' => 'plugins.login.user_registration.redirect_after_registration',                        'enabled' => 'plugins.login.user_registration.enabled',                        'fields' => 'plugins.login.user_registration.fields',                        'default_values' => 'plugins.login.user_registration.default_values',                        'groups' => 'plugins.login.user_registration.groups',                        'access' => [                            'site' => 'plugins.login.user_registration.access.site'                        ],                        'options' => [                            'validate_password1_and_password2' => 'plugins.login.user_registration.options.validate_password1_and_password2',                            'set_user_disabled' => 'plugins.login.user_registration.options.set_user_disabled',                            'login_after_registration' => 'plugins.login.user_registration.options.login_after_registration',                            'send_activation_email' => 'plugins.login.user_registration.options.send_activation_email',                            'manually_enable' => 'plugins.login.user_registration.options.manually_enable',                            'send_notification_email' => 'plugins.login.user_registration.options.send_notification_email',                            'send_welcome_email' => 'plugins.login.user_registration.options.send_welcome_email'                        ]                    ],                    'route_register' => 'plugins.login.route_register',                    'registration' => 'plugins.login.registration',                    'registration_fields' => 'plugins.login.registration_fields',                    'access_levels' => 'plugins.login.access_levels',                    'Security' => 'plugins.login.Security',                    'max_pw_resets_count' => 'plugins.login.max_pw_resets_count',                    'max_pw_resets_interval' => 'plugins.login.max_pw_resets_interval',                    'max_login_count' => 'plugins.login.max_login_count',                    'max_login_interval' => 'plugins.login.max_login_interval',                    'ipv6_subnet_size' => 'plugins.login.ipv6_subnet_size'                ],                'error' => [                    'enabled' => 'plugins.error.enabled',                    'routes' => [                        404 => 'plugins.error.routes.404'                    ]                ],                'email' => [                    'enabled' => 'plugins.email.enabled',                    'mailer' => [                        'engine' => 'plugins.email.mailer.engine',                        'smtp' => [                            'server' => 'plugins.email.mailer.smtp.server',                            'port' => 'plugins.email.mailer.smtp.port',                            'encryption' => 'plugins.email.mailer.smtp.encryption',                            'user' => 'plugins.email.mailer.smtp.user',                            'password' => 'plugins.email.mailer.smtp.password'                        ],                        'sendmail' => [                            'bin' => 'plugins.email.mailer.sendmail.bin'                        ]                    ],                    'content_type' => 'plugins.email.content_type',                    'charset' => 'plugins.email.charset',                    'email_Defaults' => 'plugins.email.email_Defaults',                    'from' => 'plugins.email.from',                    'from_name' => 'plugins.email.from_name',                    'to' => 'plugins.email.to',                    'to_name' => 'plugins.email.to_name',                    'cc' => 'plugins.email.cc',                    'cc_name' => 'plugins.email.cc_name',                    'bcc' => 'plugins.email.bcc',                    'reply_to' => 'plugins.email.reply_to',                    'reply_to_name' => 'plugins.email.reply_to_name',                    'body' => 'plugins.email.body',                    'smtp_config' => 'plugins.email.smtp_config',                    'sendmail_config' => 'plugins.email.sendmail_config',                    'queue_section' => 'plugins.email.queue_section',                    'queue' => [                        'enabled' => 'plugins.email.queue.enabled',                        'flush_frequency' => 'plugins.email.queue.flush_frequency',                        'flush_msg_limit' => 'plugins.email.queue.flush_msg_limit',                        'flush_time_limit' => 'plugins.email.queue.flush_time_limit'                    ],                    'advanced_section' => 'plugins.email.advanced_section',                    'debug' => 'plugins.email.debug'                ],                'taxonomylist' => [                    'enabled' => 'plugins.taxonomylist.enabled',                    'route' => 'plugins.taxonomylist.route'                ],                'vimeo' => [                    'tabs' => 'plugins.vimeo.tabs',                    'general' => 'plugins.vimeo.general',                    'enabled' => 'plugins.vimeo.enabled',                    'plugin_css' => 'plugins.vimeo.plugin_css',                    'editor_button' => 'plugins.vimeo.editor_button',                    'player_parameters' => [                        'autoplay' => 'plugins.vimeo.player_parameters.autoplay',                        'autopause' => 'plugins.vimeo.player_parameters.autopause',                        'loop' => 'plugins.vimeo.player_parameters.loop',                        'player_id' => 'plugins.vimeo.player_parameters.player_id',                        'view' => 'plugins.vimeo.player_parameters.view',                        'title' => 'plugins.vimeo.player_parameters.title',                        'portrait' => 'plugins.vimeo.player_parameters.portrait',                        'byline' => 'plugins.vimeo.player_parameters.byline',                        'color' => 'plugins.vimeo.player_parameters.color'                    ]                ],                'problems' => [                    'enabled' => 'plugins.problems.enabled',                    'built_in_css' => 'plugins.problems.built_in_css'                ]            ]        ],        'dynamic' => [                    ],        'filter' => [            'validation' => true        ]    ]];
 |