settings.txt

Markus Goldbeck, 2012-11-06 15:41

Download (41.2 kB)

 
1
Configuration "Settings":
2

    
3
TYPO3:
4
    Flow:
5
        aop:
6
            globalObjects:
7
                securityContext: TYPO3\Flow\Security\Context
8
        configuration:
9
            compileConfigurationFiles: false
10
        core:
11
            context: Development
12
            phpBinaryPathAndFilename: /Applications/MAMP/bin/php/php5.3.6/bin/php
13
            subRequestEnvironmentVariables:
14
                XDEBUG_CONFIG: 'idekey=FLOW_SUBREQUEST remote_port=9001'
15
        error:
16
            exceptionHandler:
17
                className: TYPO3\Flow\Error\DebugExceptionHandler
18
                defaultRenderingOptions:
19
                    renderTechnicalDetails: true
20
                renderingGroups:
21
                    notFoundExceptions:
22
                        matchingStatusCodes:
23
                            - 404
24
                        options:
25
                            templatePathAndFilename: 'resource://TYPO3.Neos/Private/Templates/Error/Index.html'
26
                            variables:
27
                                errorDescription: 'Sorry, the page you requested was not found.'
28
                                errorTitle: 'Page Not Found'
29
                            layoutRootPath: 'resource://TYPO3.Neos/Private/Layouts/'
30
                            format: html
31
                    databaseConnectionExceptions:
32
                        matchingExceptionClassNames:
33
                            - TYPO3\Flow\Persistence\Doctrine\DatabaseConnectionException
34
                        options:
35
                            templatePathAndFilename: 'resource://TYPO3.Neos/Private/Templates/Error/Index.html'
36
                            variables:
37
                                errorDescription: 'Sorry, the database connection could not be established.'
38
                                errorTitle: 'No Database Connection'
39
                            layoutRootPath: 'resource://TYPO3.Neos/Private/Layouts/'
40
                            format: html
41
                    noHomepageException:
42
                        matchingExceptionClassNames:
43
                            - TYPO3\Neos\Routing\Exception\NoHomepageException
44
                        options:
45
                            templatePathAndFilename: 'resource://TYPO3.Neos/Private/Templates/Error/Index.html'
46
                            layoutRootPath: 'resource://TYPO3.Neos/Private/Layouts/'
47
                            format: html
48
                            variables:
49
                                errorTitle: 'Missing Homepage'
50
                                errorDescription: 'Either no site has been defined yet or the site does not contain a homepage.'
51
            errorHandler:
52
                exceptionalErrors:
53
                    - '256'
54
                    - '4096'
55
                    - '2'
56
                    - '8'
57
                    - '512'
58
                    - '1024'
59
                    - '2048'
60
        http:
61
            baseUri: null
62
        log:
63
            systemLogger:
64
                backend: TYPO3\Flow\Log\Backend\FileBackend
65
                backendOptions:
66
                    logFileURL: /Applications/MAMP/htdocs/NeosCore/Data/Logs/System_Development.log
67
                    createParentDirectories: true
68
                    severityThreshold: '7'
69
                    maximumLogFileSize: 10485760
70
                    logFilesToKeep: 1
71
                    logMessageOrigin: false
72
            securityLogger:
73
                backend: TYPO3\Flow\Log\Backend\FileBackend
74
                backendOptions:
75
                    logFileURL: /Applications/MAMP/htdocs/NeosCore/Data/Logs/Security_Development.log
76
                    createParentDirectories: true
77
                    severityThreshold: '7'
78
                    maximumLogFileSize: 10485760
79
                    logFilesToKeep: 1
80
                    logIpAddress: true
81
            sqlLogger:
82
                backend: TYPO3\Flow\Log\Backend\FileBackend
83
                backendOptions:
84
                    logFileURL: /Applications/MAMP/htdocs/NeosCore/Data/Logs/Query_Development.log
85
                    createParentDirectories: true
86
                    severityThreshold: '7'
87
                    maximumLogFileSize: 10485760
88
                    logFilesToKeep: 1
89
        i18n:
90
            defaultLocale: en
91
            fallbackRule:
92
                strict: false
93
                order: {  }
94
        object:
95
            registerFunctionalTestClasses: false
96
            excludeClasses:
97
                Doctrine.Common:
98
                    - '.*'
99
                Doctrine.ORM:
100
                    - '.*'
101
                Doctrine.DBAL:
102
                    - '.*'
103
                doctrine.migrations:
104
                    - '.*'
105
                symfony.domcrawler:
106
                    - 'Symfony\\Component\\DomCrawler\\Tests\\.*'
107
                    - 'Symfony\\Component\\DomCrawler\\Form.*'
108
                symfony.yaml:
109
                    - 'Symfony\\Component\\Yaml\\Tests\\.*'
110
                mikey179.vfsStream:
111
                    - '.*'
112
                typo3.flowcomposerinstallers:
113
                    - '.*'
114
                imagine.Imagine:
115
                    - 'Imagine\\Test\\.*'
116
        package:
117
            inactiveByDefault:
118
                - typo3.flowcomposerinstallers
119
        persistence:
120
            backendOptions:
121
                driver: pdo_mysql
122
                host: 127.0.0.1
123
                dbname: neoscore
124
                user: root
125
                password: root
126
                charset: utf8
127
            doctrine:
128
                enable: true
129
                cacheImplementation: Doctrine\Common\Cache\ArrayCache
130
                sqlLogger: null
131
        reflection:
132
            ignoredTags:
133
                - api
134
                - package
135
                - subpackage
136
                - license
137
                - copyright
138
                - author
139
                - const
140
                - see
141
                - todo
142
                - scope
143
                - fixme
144
                - test
145
                - expectedException
146
                - depends
147
                - dataProvider
148
                - group
149
                - codeCoverageIgnore
150
            logIncorrectDocCommentHints: false
151
        resource:
152
            publishing:
153
                detectPackageResourceChanges: true
154
                fileSystem:
155
                    mirrorMode: link
156
        security:
157
            enable: true
158
            firewall:
159
                rejectAll: false
160
                filters:
161
                    -
162
                        patternType: CsrfProtection
163
                        patternValue: null
164
                        interceptor: AccessDeny
165
            authentication:
166
                providers:
167
                    Typo3BackendProvider:
168
                        provider: PersistedUsernamePasswordProvider
169
                        requestPatterns:
170
                            controllerObjectName: 'TYPO3\Neos\Controller\.*|TYPO3\Neos\Service\.*'
171
                        entryPoint: WebRedirect
172
                        entryPointOptions:
173
                            uri: neos/login
174
                    Typo3SetupProvider:
175
                        provider: FileBasedSimpleKeyProvider
176
                        providerOptions:
177
                            keyName: SetupKey
178
                        requestPatterns:
179
                            controllerObjectName: 'TYPO3\Setup\Controller\.*'
180
                        entryPoint: WebRedirect
181
                        entryPointOptions:
182
                            uri: setup/login
183
                authenticationStrategy: oneToken
184
            authorization:
185
                accessDecisionVoters:
186
                    - TYPO3\Flow\Security\Authorization\Voter\Policy
187
                allowAccessIfAllVotersAbstain: false
188
            csrf:
189
                csrfStrategy: onePerSession
190
            cryptography:
191
                hashingStrategies:
192
                    default: bcrypt
193
                    fallback: pbkdf2
194
                    pbkdf2: TYPO3\Flow\Security\Cryptography\Pbkdf2HashingStrategy
195
                    bcrypt: TYPO3\Flow\Security\Cryptography\BCryptHashingStrategy
196
                    saltedmd5: TYPO3\Flow\Security\Cryptography\SaltedMd5HashingStrategy
197
                Pbkdf2HashingStrategy:
198
                    dynamicSaltLength: 8
199
                    iterationCount: 10000
200
                    derivedKeyLength: 64
201
                    algorithm: sha256
202
                BCryptHashingStrategy:
203
                    cost: 14
204
                RSAWalletServicePHP:
205
                    keystorePath: /Applications/MAMP/htdocs/NeosCore/Data/Persistent/RsaWalletData
206
                    openSSLConfiguration: {  }
207
        session:
208
            inactivityTimeout: 3600
209
            PhpSession:
210
                name: Flow
211
                savePath: null
212
                cookie:
213
                    lifetime: 0
214
                    path: /
215
                    secure: false
216
                    httponly: true
217
                    domain: null
218
        utility:
219
            environment:
220
                temporaryDirectoryBase: /Applications/MAMP/htdocs/NeosCore/Data/Temporary/
221
    Aloha:
222
        alohaDevelopmentMode: false
223
    Eel: {  }
224
    ExtJS:
225
        ExtDirect:
226
            exposeExceptionInformation: true
227
    Fluid: {  }
228
    Form:
229
        yamlPersistenceManager:
230
            savePath: /Applications/MAMP/htdocs/NeosCore/Data/Forms/
231
        supertypeResolver:
232
            hiddenProperties: {  }
233
        presets:
234
            default:
235
                title: Default
236
                stylesheets: {  }
237
                javaScripts: {  }
238
                formElementTypes:
239
                    'TYPO3.Form:Base':
240
                        renderingOptions:
241
                            templatePathPattern: 'resource://{@package}/Private/Form/{@type}.html'
242
                            partialPathPattern: 'resource://{@package}/Private/Form/Partials/{@type}.html'
243
                            layoutPathPattern: 'resource://{@package}/Private/Form/Layouts/{@type}.html'
244
                    'TYPO3.Form:Form':
245
                        superTypes:
246
                            - 'TYPO3.Form:Base'
247
                        rendererClassName: TYPO3\Form\Core\Renderer\FluidFormRenderer
248
                        renderingOptions:
249
                            renderableNameInTemplate: form
250
                    'TYPO3.Form:RemovableMixin': {  }
251
                    'TYPO3.Form:ReadOnlyFormElement':
252
                        superTypes:
253
                            - 'TYPO3.Form:Base'
254
                            - 'TYPO3.Form:RemovableMixin'
255
                        implementationClassName: TYPO3\Form\FormElements\GenericFormElement
256
                        renderingOptions:
257
                            renderableNameInTemplate: element
258
                    'TYPO3.Form:FormElement':
259
                        superTypes:
260
                            - 'TYPO3.Form:Base'
261
                            - 'TYPO3.Form:RemovableMixin'
262
                        implementationClassName: TYPO3\Form\FormElements\GenericFormElement
263
                        properties:
264
                            containerClassAttribute: input
265
                            elementClassAttribute: ''
266
                            elementErrorClassAttribute: error
267
                        renderingOptions:
268
                            renderableNameInTemplate: element
269
                    'TYPO3.Form:Page':
270
                        superTypes:
271
                            - 'TYPO3.Form:Base'
272
                            - 'TYPO3.Form:RemovableMixin'
273
                        implementationClassName: TYPO3\Form\Core\Model\Page
274
                        renderingOptions:
275
                            renderableNameInTemplate: page
276
                    'TYPO3.Form:PreviewPage':
277
                        superTypes:
278
                            - 'TYPO3.Form:Page'
279
                    'TYPO3.Form:Section':
280
                        superTypes:
281
                            - 'TYPO3.Form:FormElement'
282
                        implementationClassName: TYPO3\Form\FormElements\Section
283
                        renderingOptions:
284
                            renderableNameInTemplate: section
285
                    'TYPO3.Form:TextMixin': {  }
286
                    'TYPO3.Form:SingleLineText':
287
                        superTypes:
288
                            - 'TYPO3.Form:FormElement'
289
                            - 'TYPO3.Form:TextMixin'
290
                    'TYPO3.Form:Password':
291
                        superTypes:
292
                            - 'TYPO3.Form:FormElement'
293
                            - 'TYPO3.Form:TextMixin'
294
                    'TYPO3.Form:PasswordWithConfirmation':
295
                        superTypes:
296
                            - 'TYPO3.Form:Password'
297
                        implementationClassName: TYPO3\Form\FormElements\PasswordWithConfirmation
298
                        properties:
299
                            elementClassAttribute: input-medium
300
                            confirmationLabel: Confirmation
301
                            confirmationClassAttribute: input-medium
302
                    'TYPO3.Form:MultiLineText':
303
                        superTypes:
304
                            - 'TYPO3.Form:FormElement'
305
                            - 'TYPO3.Form:TextMixin'
306
                        properties:
307
                            elementClassAttribute: xxlarge
308
                    'TYPO3.Form:SelectionMixin': {  }
309
                    'TYPO3.Form:SingleSelectionMixin':
310
                        superTypes:
311
                            - 'TYPO3.Form:SelectionMixin'
312
                    'TYPO3.Form:MultiSelectionMixin':
313
                        superTypes:
314
                            - 'TYPO3.Form:SelectionMixin'
315
                    'TYPO3.Form:Checkbox':
316
                        superTypes:
317
                            - 'TYPO3.Form:FormElement'
318
                        properties:
319
                            elementClassAttribute: add-on
320
                            value: 1
321
                    'TYPO3.Form:MultipleSelectCheckboxes':
322
                        superTypes:
323
                            - 'TYPO3.Form:FormElement'
324
                            - 'TYPO3.Form:MultiSelectionMixin'
325
                    'TYPO3.Form:MultipleSelectDropdown':
326
                        superTypes:
327
                            - 'TYPO3.Form:FormElement'
328
                            - 'TYPO3.Form:MultiSelectionMixin'
329
                        properties:
330
                            elementClassAttribute: xlarge
331
                    'TYPO3.Form:SingleSelectRadiobuttons':
332
                        superTypes:
333
                            - 'TYPO3.Form:FormElement'
334
                            - 'TYPO3.Form:SingleSelectionMixin'
335
                    'TYPO3.Form:SingleSelectDropdown':
336
                        superTypes:
337
                            - 'TYPO3.Form:FormElement'
338
                            - 'TYPO3.Form:SingleSelectionMixin'
339
                    'TYPO3.Form:DatePicker':
340
                        superTypes:
341
                            - 'TYPO3.Form:FormElement'
342
                        implementationClassName: TYPO3\Form\FormElements\DatePicker
343
                        properties:
344
                            elementClassAttribute: small
345
                            timeSelectorClassAttribute: mini
346
                            dateFormat: Y-m-d
347
                            enableDatePicker: true
348
                            displayTimeSelector: false
349
                    'TYPO3.Form:FileUpload':
350
                        superTypes:
351
                            - 'TYPO3.Form:FormElement'
352
                        implementationClassName: TYPO3\Form\FormElements\FileUpload
353
                        properties:
354
                            allowedExtensions:
355
                                - pdf
356
                                - doc
357
                    'TYPO3.Form:ImageUpload':
358
                        superTypes:
359
                            - 'TYPO3.Form:FormElement'
360
                        implementationClassName: TYPO3\Form\FormElements\ImageUpload
361
                        properties:
362
                            allowedTypes:
363
                                - jpeg
364
                                - png
365
                                - bmp
366
                    'TYPO3.Form:StaticText':
367
                        superTypes:
368
                            - 'TYPO3.Form:ReadOnlyFormElement'
369
                        properties:
370
                            text: ''
371
                    'TYPO3.Form:HiddenField':
372
                        superTypes:
373
                            - 'TYPO3.Form:FormElement'
374
                finisherPresets:
375
                    'TYPO3.Form:Closure':
376
                        implementationClassName: TYPO3\Form\Finishers\ClosureFinisher
377
                        options: {  }
378
                    'TYPO3.Form:Confirmation':
379
                        implementationClassName: TYPO3\Form\Finishers\ConfirmationFinisher
380
                        options: {  }
381
                    'TYPO3.Form:Email':
382
                        implementationClassName: TYPO3\Form\Finishers\EmailFinisher
383
                        options: {  }
384
                    'TYPO3.Form:FlashMessage':
385
                        implementationClassName: TYPO3\Form\Finishers\FlashMessageFinisher
386
                        options: {  }
387
                    'TYPO3.Form:Redirect':
388
                        implementationClassName: TYPO3\Form\Finishers\RedirectFinisher
389
                        options: {  }
390
                validatorPresets:
391
                    'TYPO3.Flow:NotEmpty':
392
                        implementationClassName: TYPO3\Flow\Validation\Validator\NotEmptyValidator
393
                    'TYPO3.Flow:DateTimeRange':
394
                        implementationClassName: TYPO3\Flow\Validation\Validator\DateTimeRangeValidator
395
                    'TYPO3.Flow:Alphanumeric':
396
                        implementationClassName: TYPO3\Flow\Validation\Validator\AlphanumericValidator
397
                    'TYPO3.Flow:Text':
398
                        implementationClassName: TYPO3\Flow\Validation\Validator\TextValidator
399
                    'TYPO3.Flow:StringLength':
400
                        implementationClassName: TYPO3\Flow\Validation\Validator\StringLengthValidator
401
                    'TYPO3.Flow:EmailAddress':
402
                        implementationClassName: TYPO3\Flow\Validation\Validator\EmailAddressValidator
403
                    'TYPO3.Flow:Integer':
404
                        implementationClassName: TYPO3\Flow\Validation\Validator\IntegerValidator
405
                    'TYPO3.Flow:Float':
406
                        implementationClassName: TYPO3\Flow\Validation\Validator\FloatValidator
407
                    'TYPO3.Flow:NumberRange':
408
                        implementationClassName: TYPO3\Flow\Validation\Validator\NumberRangeValidator
409
                    'TYPO3.Flow:RegularExpression':
410
                        implementationClassName: TYPO3\Flow\Validation\Validator\RegularExpressionValidator
411
                    'TYPO3.Flow:Count':
412
                        implementationClassName: TYPO3\Flow\Validation\Validator\CountValidator
413
            typo3.setup:
414
                title: 'Setup Elements'
415
                parentPreset: default
416
                formElementTypes:
417
                    'TYPO3.Form:Form':
418
                        renderingOptions:
419
                            templatePathPattern: 'resource://TYPO3.Setup/Private/Form/{@type}.html'
420
                    'TYPO3.Setup:LinkElement':
421
                        superTypes:
422
                            - 'TYPO3.Form:ReadOnlyFormElement'
423
                        properties:
424
                            text: ''
425
                            class: btn
426
                            href: ''
427
                    'TYPO3.Setup:DatabaseSelector':
428
                        superTypes:
429
                            - 'TYPO3.Form:FormElement'
430
    DocTools:
431
        bundles:
432
            Form:
433
                documentationRootPath: /Applications/MAMP/htdocs/NeosCore/Packages/Application/TYPO3.Form/Documentation/Guide/source
434
                renderedDocumentationRootPath: /Applications/MAMP/htdocs/NeosCore/Data/Temporary/Documentation/Form
435
                configurationRootPath: /Applications/MAMP/htdocs/NeosCore/Packages/Application/TYPO3.Form/Documentation/Guide/source
436
                imageRootPath: /Applications/MAMP/htdocs/NeosCore/Packages/Application/TYPO3.Form/Documentation/Guide/Images/
437
            Neos:
438
                documentationRootPath: /Applications/MAMP/htdocs/NeosCore/Packages/Application/TYPO3.Neos/Documentation/
439
                configurationRootPath: /Applications/MAMP/htdocs/NeosCore/Packages/Application/TYPO3.DocTools/Resources/Private/Themes/TYPO3/
440
                renderedDocumentationRootPath: /Applications/MAMP/htdocs/NeosCore/Data/Temporary/Documentation/TYPO3.Neos/
441
                renderingOutputFormat: html
442
                renderByDefault: false
443
    Gerrit: {  }
444
    Imagine:
445
        driver: Gd
446
    Kickstart: {  }
447
    Media: {  }
448
    Neos:
449
        contentTypeGroups:
450
            - General
451
            - Structure
452
            - Plugins
453
        enableAloha: false
454
        loadMinifiedJavascript: false
455
        userInterface:
456
            string:
457
                class: T3.Content.UI.Editor.TextField
458
            integer:
459
                class: T3.Content.UI.Editor.TextField
460
            boolean:
461
                class: T3.Content.UI.Editor.Checkbox
462
            TYPO3\Media\Domain\Model\ImageVariant:
463
                class: T3.Content.UI.Editor.Image
464
            date:
465
                class: T3.Content.UI.Editor.DateField
466
            enum:
467
                class: T3.Content.UI.Editor.Selectbox
468
        moduleConfiguration:
469
            widgetTemplatePathAndFileName: 'resource://TYPO3.Neos/Private/Templates/Module/Widget.html'
470
        modules:
471
            management:
472
                label: Management
473
                submodules:
474
                    workspaces:
475
                        label: Workspaces
476
                        controller: \TYPO3\Neos\Controller\Module\Management\WorkspacesController
477
                        description: 'This module contains the overview of all elements within the current workspace and it enables to continue the review and publishing workflow for them.'
478
                        icon: 'resource://TYPO3.Neos/Public/Images/Icons/Orange/layers_1_icon-24.png'
479
            administration:
480
                label: Administration
481
                role: Administrator
482
                submodules:
483
                    users:
484
                        label: 'User Management'
485
                        controller: \TYPO3\Neos\Controller\Module\Administration\UsersController
486
                        description: 'The User Management module provides you with an overview of all backend users. You can group them by their properties so you are able to monitor their permissions, filemounts, member groups etc.. This module is an indispensable tool in order to make sure the users are correctly configured.'
487
                        icon: 'resource://TYPO3.Neos/Public/Images/Icons/Orange/users_icon-24.png'
488
                        actions:
489
                            new:
490
                                label: 'Create user'
491
                                title: 'Create a new user'
492
                    packages:
493
                        label: 'Package Management'
494
                        controller: \TYPO3\Neos\Controller\Module\Administration\PackagesController
495
                        description: 'The Package Management module provides you with an overview of all packages. You can activate and deactivate individual packages, import new packages and delete existing packages. It also provides you with the ability to freeze and unfreeze packages in development context.'
496
                        icon: 'resource://TYPO3.Neos/Public/Images/Icons/Orange/box_icon-24.png'
497
            user:
498
                label: User
499
                hideInMenu: true
500
                submodules:
501
                    usersettings:
502
                        label: 'User Settings'
503
                        controller: \TYPO3\Neos\Controller\Module\User\UserSettingsController
504
                        description: 'This module allows you to customize your backend user profile. Here you can change your active system language, name and email address. You may also configure other general features in the system.'
505
                        icon: 'resource://TYPO3.Neos/Public/Images/Icons/Orange/user_icon-24.png'
506
        ContentTypes: {  }
507
    Setup:
508
        stepOrder:
509
            - database
510
            - final
511
            - siteimport
512
            - final
513
        steps:
514
            administrator:
515
                className: TYPO3\Neos\Setup\Step\AdministratorStep
516
                requiredConditions:
517
                    -
518
                        className: TYPO3\Setup\Condition\DatabaseConnectionCondition
519
            siteimport:
520
                className: TYPO3\Neos\Setup\Step\SiteImportStep
521
                requiredConditions:
522
                    -
523
                        className: TYPO3\Setup\Condition\DatabaseConnectionCondition
524
            final:
525
                className: TYPO3\Setup\Step\FinalStep
526
            database:
527
                className: TYPO3\Setup\Step\DatabaseStep
528
                requiredConditions:
529
                    -
530
                        className: TYPO3\Setup\Condition\PdoDriverCondition
531
        view:
532
            title: 'TYPO3 Setup'
533
        initialPasswordFile: /Applications/MAMP/htdocs/NeosCore/Data/SetupPassword.txt
534
    TYPO3CR:
535
        contentTypes:
536
            'TYPO3.Neos.ContentTypes:AbstractNode':
537
                properties:
538
                    _removed:
539
                        type: boolean
540
                    _hidden:
541
                        type: boolean
542
                        label: Hide
543
                        group: visibility
544
                        priority: 1
545
                    _hiddenBeforeDateTime:
546
                        type: date
547
                        label: 'Hide before date'
548
                        group: visibility
549
                        priority: 11
550
                    _hiddenAfterDateTime:
551
                        type: date
552
                        label: 'Hide after date'
553
                        group: visibility
554
                        priority: 10
555
                groups:
556
                    visibility:
557
                        label: Visibility
558
                        priority: 1
559
            'TYPO3.Neos.ContentTypes:Section':
560
                superTypes:
561
                    - 'TYPO3.Neos.ContentTypes:AbstractNode'
562
                label: Section
563
                icon: Images/Icons/White/page_layout_icon-16.png
564
                darkIcon: Images/Icons/Black/page_layout_icon-16.png
565
            'TYPO3.Neos.ContentTypes:Folder':
566
                superTypes:
567
                    - 'TYPO3.TYPO3CR:Folder'
568
                    - 'TYPO3.Neos.ContentTypes:AbstractNode'
569
                label: Folder
570
                search: Pages
571
                properties:
572
                    title:
573
                        type: string
574
                        label: Title
575
                        group: page
576
                        reloadOnChange: true
577
                    _name:
578
                        type: string
579
                        label: 'Name (URL)'
580
                        group: page
581
                        reloadOnChange: true
582
                groups:
583
                    page:
584
                        label: 'Folder options'
585
                        priority: 10
586
            'TYPO3.Neos.ContentTypes:Shortcut':
587
                superTypes:
588
                    - 'TYPO3.Neos.ContentTypes:Folder'
589
                label: Shortcut
590
                icon: Images/Icons/White/shortcut_icon-16.png
591
                darkIcon: Images/Icons/Black/shortcut_icon-16.png
592
                groups:
593
                    page:
594
                        label: 'Shortcut options'
595
            'TYPO3.Neos.ContentTypes:Page':
596
                superTypes:
597
                    - 'TYPO3.Neos.ContentTypes:Folder'
598
                label: Page
599
                icon: Images/Icons/White/doc_empty_icon-16.png
600
                darkIcon: Images/Icons/Black/doc_empty_icon-16.png
601
                groups:
602
                    page:
603
                        label: 'Page options'
604
            'TYPO3.Neos.ContentTypes:ContentObject':
605
                superTypes:
606
                    - 'TYPO3.Neos.ContentTypes:AbstractNode'
607
                label: 'Abstract content object'
608
                search: Content
609
                properties:
610
                    title:
611
                        type: string
612
                        label: 'Content Title'
613
            'TYPO3.Neos.ContentTypes:Headline':
614
                superTypes:
615
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
616
                group: General
617
                icon: Images/Icons/White/text_letter_t_icon-16.png
618
                darkIcon: Images/Icons/Black/text_letter_t_icon-16.png
619
                label: Headline
620
                properties:
621
                    title:
622
                        default: '<h1>Enter headline here</h1>'
623
                inlineEditableProperties:
624
                    - title
625
            'TYPO3.Neos.ContentTypes:Text':
626
                superTypes:
627
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
628
                group: General
629
                icon: Images/Icons/White/doc_lines_stright_icon-16.png
630
                darkIcon: Images/Icons/Black/doc_lines_stright_icon-16.png
631
                label: Text
632
                properties:
633
                    text:
634
                        label: string
635
                        default: '<p>Enter text here</p>'
636
                inlineEditableProperties:
637
                    - title
638
                    - text
639
            'TYPO3.Neos.ContentTypes:Image':
640
                label: Image
641
                superTypes:
642
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
643
                group: General
644
                icon: Images/Icons/White/picture_icon-16.png
645
                darkIcon: Images/Icons/Black/picture_icon-16.png
646
                properties:
647
                    image:
648
                        type: TYPO3\Media\Domain\Model\ImageVariant
649
                        label: Image
650
                        group: image
651
                        reloadOnChange: true
652
                groups:
653
                    image:
654
                        label: Image
655
                        priority: 5
656
            'TYPO3.Neos.ContentTypes:TextWithImage':
657
                label: 'Text with Image'
658
                superTypes:
659
                    - 'TYPO3.Neos.ContentTypes:Image'
660
                    - 'TYPO3.Neos.ContentTypes:Text'
661
                group: General
662
                icon: Images/Icons/White/image_text_icon-16.png
663
                darkIcon: Images/Icons/Black/image_text_icon-16.png
664
                properties:
665
                    position:
666
                        type: enum
667
                        label: 'Image position'
668
                        group: image
669
                        options:
670
                            values:
671
                                left:
672
                                    label: Left
673
                                right:
674
                                    label: Right
675
                        reloadOnChange: true
676
            'TYPO3.Neos.ContentTypes:Html':
677
                superTypes:
678
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
679
                group: General
680
                icon: Images/Icons/White/brackets_icon-16.png
681
                darkIcon: Images/Icons/Black/brackets_icon-16.png
682
                label: HTML
683
                properties:
684
                    source:
685
                        type: string
686
                        label: 'HTML Content'
687
                        default: '<p>Enter HTML here</p>'
688
                        group: html
689
                        userInterface:
690
                            class: T3.Content.UI.Editor.HtmlEditor
691
                groups:
692
                    html:
693
                        label: HTML
694
                        priority: 10
695
            'TYPO3.Neos.ContentTypes:Menu':
696
                superTypes:
697
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
698
                group: Structure
699
                icon: Images/Icons/White/list_bullets_icon-16.png
700
                darkIcon: Images/Icons/Black/list_bullets_icon-16.png
701
                label: Menu
702
                properties:
703
                    startLevel:
704
                        type: enum
705
                        label: 'Starting Level'
706
                        group: options
707
                        reloadOnChange: true
708
                        default: '0'
709
                        options:
710
                            values:
711
                                -4:
712
                                    label: 'Four Levels Above Current Page'
713
                                -3:
714
                                    label: 'Three Levels Above Current Page'
715
                                -2:
716
                                    label: 'Two Levels Above Current Page'
717
                                -1:
718
                                    label: 'One Level Above Current Page'
719
                                0:
720
                                    label: 'Same Level As Current Page'
721
                                1:
722
                                    label: 'First Level Of Website'
723
                                2:
724
                                    label: 'Second Level Of Website'
725
                                3:
726
                                    label: 'Third Level Of Website'
727
                                4:
728
                                    label: 'Forth Level Of Website'
729
                                5:
730
                                    label: 'Fifth Level Of Website'
731
                                6:
732
                                    label: 'Sixth Level Of Website'
733
                    maximumLevels:
734
                        type: enum
735
                        label: 'Maximum Levels'
736
                        group: options
737
                        reloadOnChange: true
738
                        default: '1'
739
                        options:
740
                            values:
741
                                1:
742
                                    label: '1'
743
                                2:
744
                                    label: '2'
745
                                3:
746
                                    label: '3'
747
                                4:
748
                                    label: '4'
749
                                5:
750
                                    label: '5'
751
                                6:
752
                                    label: '6'
753
                                7:
754
                                    label: '7'
755
                                8:
756
                                    label: '8'
757
                                9:
758
                                    label: '9'
759
                                10:
760
                                    label: '10'
761
                groups:
762
                    options:
763
                        label: Options
764
                        priority: 30
765
            'TYPO3.Neos.ContentTypes:Column':
766
                superTypes:
767
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
768
                icon: Images/Icons/White/columns_icon-16.png
769
                darkIcon: Images/Icons/Black/columns_icon-16.png
770
                properties:
771
                    layout:
772
                        type: enum
773
                        label: Layout
774
                        group: column
775
                groups:
776
                    column:
777
                        label: Columns
778
                        priority: 10
779
            'TYPO3.Neos.ContentTypes:TwoColumn':
780
                superTypes:
781
                    - 'TYPO3.Neos.ContentTypes:Column'
782
                group: Structure
783
                label: 'Two column content'
784
                structure:
785
                    column0:
786
                        type: 'TYPO3.Neos.ContentTypes:Section'
787
                    column1:
788
                        type: 'TYPO3.Neos.ContentTypes:Section'
789
                properties:
790
                    layout:
791
                        default: 50-50
792
                        options:
793
                            values:
794
                                50-50:
795
                                    label: '50% / 50%'
796
                                75-25:
797
                                    label: '75% / 25%'
798
                                25-75:
799
                                    label: '25% / 75%'
800
                                66-33:
801
                                    label: '66% / 33%'
802
                                33-66:
803
                                    label: '33% / 66%'
804
                        reloadOnChange: true
805
            'TYPO3.Neos.ContentTypes:ThreeColumn':
806
                superTypes:
807
                    - 'TYPO3.Neos.ContentTypes:Column'
808
                group: Structure
809
                label: 'Three column content'
810
                structure:
811
                    column0:
812
                        type: 'TYPO3.Neos.ContentTypes:Section'
813
                    column1:
814
                        type: 'TYPO3.Neos.ContentTypes:Section'
815
                    column2:
816
                        type: 'TYPO3.Neos.ContentTypes:Section'
817
                properties:
818
                    layout:
819
                        default: 33-33-33
820
                        options:
821
                            values:
822
                                33-33-33:
823
                                    label: '33% / 33% / 33%'
824
                                50-25-25:
825
                                    label: '50% / 25% / 25%'
826
                                25-50-25:
827
                                    label: '25% / 50% / 25%'
828
                                25-25-50:
829
                                    label: '25% / 25% / 50%'
830
                        reloadOnChange: true
831
            'TYPO3.Neos.ContentTypes:FourColumn':
832
                superTypes:
833
                    - 'TYPO3.Neos.ContentTypes:Column'
834
                group: Structure
835
                label: 'Four column content'
836
                structure:
837
                    column0:
838
                        type: 'TYPO3.Neos.ContentTypes:Section'
839
                    column1:
840
                        type: 'TYPO3.Neos.ContentTypes:Section'
841
                    column2:
842
                        type: 'TYPO3.Neos.ContentTypes:Section'
843
                    column3:
844
                        type: 'TYPO3.Neos.ContentTypes:Section'
845
                properties:
846
                    layout:
847
                        default: 25-25-25-25
848
                        options:
849
                            values:
850
                                25-25-25-25:
851
                                    label: '25% / 25% / 25% / 25%'
852
                        reloadOnChange: true
853
            'TYPO3.Neos.ContentTypes:Plugin':
854
                superTypes:
855
                    - 'TYPO3.Neos.ContentTypes:ContentObject'
856
                icon: Images/Icons/White/app_window_shell_icon-16.png
857
                darkIcon: Images/Icons/Black/app_window_shell_icon-16.png
858
                label: 'Abstract plugin'
859
                properties:
860
                    package:
861
                        type: string
862
                        label: Package
863
                        group: pluginSettings
864
                        reloadOnChange: true
865
                    subpackage:
866
                        type: string
867
                        label: Subpackage
868
                        group: pluginSettings
869
                        reloadOnChange: true
870
                    controller:
871
                        type: string
872
                        label: 'Controller Name'
873
                        group: pluginSettings
874
                        reloadOnChange: true
875
                    action:
876
                        type: string
877
                        label: Action
878
                        group: pluginSettings
879
                        reloadOnChange: true
880
                groups:
881
                    pluginSettings:
882
                        label: 'Plugin Settings'
883
            'TYPO3.NeosDemoTypo3Org:Registration':
884
                superTypes:
885
                    - 'TYPO3.Neos.ContentTypes:Plugin'
886
                label: 'Editor Registration Plugin'
887
            'TYPO3.NeosDemoTypo3Org:YouTube':
888
                superTypes:
889
                    - 'TYPO3.Neos.ContentTypes:Headline'
890
                icon: Images/Icons/White/youtube_icon-16.png
891
                label: YouTube
892
                properties:
893
                    video:
894
                        type: string
895
                        label: ID
896
                        default: ''
897
                        group: video
898
                        reloadOnChange: true
899
                    width:
900
                        type: integer
901
                        label: Width
902
                        default: '400'
903
                        group: video
904
                        reloadOnChange: true
905
                    height:
906
                        type: integer
907
                        label: Height
908
                        default: '300'
909
                        group: video
910
                        reloadOnChange: true
911
                groups:
912
                    video:
913
                        label: Video
914
            unstructured:
915
                label: Unstructured
916
            'TYPO3.TYPO3CR:Folder':
917
                label: Folder
918
    NeosDemoTypo3Org: {  }
919
    Party: {  }
920
    SiteKickstarter: {  }
921
    Twitter:
922
        Bootstrap:
923
            viewHelpers:
924
                partialRootPath: 'resource://TYPO3.Twitter.Bootstrap/Private/Partials/'
925
                templates:
926
                    TYPO3\Twitter\Bootstrap\ViewHelpers\Navigation\MenuViewHelper: 'resource://TYPO3.Twitter.Bootstrap/Private/Templates/Navigation/Menu.html'
927
    TypoScript:
928
        catchRuntimeExceptions: false
929
        debugMode: false
930
Doctrine:
931
    Common: {  }
932
    DBAL: {  }
933
    ORM: {  }
934
doctrine:
935
    migrations: {  }
936
imagine:
937
    Imagine: {  }
938
symfony:
939
    domcrawler: {  }
940
    yaml: {  }
941
typo3:
942
    flowcomposerinstallers: {  }
943

    
944