Resources/config/services.yml
author cavaliet
Wed, 29 Jan 2014 12:16:16 +0100
changeset 115 085ea4dbfeee
parent 81 145296a918f8
permissions -rwxr-xr-x
dbpedia sparql query
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
74
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     1
##
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     2
# This file is part of the WikiTagBundle package.
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     3
#
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     4
# (c) IRI <http://www.iri.centrepompidou.fr/>
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     5
#
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     6
# For the full copyright and license information, please view the LICENSE
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     7
# file that was distributed with this source code.
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     8
##
901463f9b11c add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 57
diff changeset
     9
1
06a22ff5d58d first commit forminimal bundle structure
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
parameters:
17
81962874e172 First implementation of dynamic fields
ymh <ymh.work@gmail.com>
parents: 3
diff changeset
    11
    wiki_tag.document_listener.class: IRI\Bundle\WikiTagBundle\Listener\DocumentListener
23
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    12
    wiki_tag.wiki_tag_document_listener.class: IRI\Bundle\WikiTagBundle\Listener\WikiTagDocumentListener
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    13
    wiki_tag.shema_utils.class: IRI\Bundle\WikiTagBundle\Utils\SchemaUtils
57
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    14
    wiki_tag.search_service_class: IRI\Bundle\WikiTagBundle\Services\SearchService
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    15
    wiki_tag.document_service_class: IRI\Bundle\WikiTagBundle\Services\DocumentService
23
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    16
1
06a22ff5d58d first commit forminimal bundle structure
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
06a22ff5d58d first commit forminimal bundle structure
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
services:
23
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    19
3
976d922e52f0 link document lifecycle
ymh <ymh.work@gmail.com>
parents: 1
diff changeset
    20
    wiki_tag.document_listener:
976d922e52f0 link document lifecycle
ymh <ymh.work@gmail.com>
parents: 1
diff changeset
    21
        class: %wiki_tag.document_listener.class%
976d922e52f0 link document lifecycle
ymh <ymh.work@gmail.com>
parents: 1
diff changeset
    22
        arguments: [@service_container]
976d922e52f0 link document lifecycle
ymh <ymh.work@gmail.com>
parents: 1
diff changeset
    23
        tags:
976d922e52f0 link document lifecycle
ymh <ymh.work@gmail.com>
parents: 1
diff changeset
    24
            - { name: doctrine.event_subscriber, connection: default }
17
81962874e172 First implementation of dynamic fields
ymh <ymh.work@gmail.com>
parents: 3
diff changeset
    25
23
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    26
    wiki_tag.wiki_tag_document_listener:
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    27
        class: %wiki_tag.wiki_tag_document_listener.class%
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    28
        arguments: [@service_container]
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    29
        tags:
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    30
            - { name: doctrine.event_subscriber, connection: default }
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    31
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    32
    wiki_tag.shema_utils:
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    33
        class: %wiki_tag.shema_utils.class%
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    34
        arguments: [@service_container]
24
cd389bf882f1 Some small corrections
ymh <ymh.work@gmail.com>
parents: 23
diff changeset
    35
        
cd389bf882f1 Some small corrections
ymh <ymh.work@gmail.com>
parents: 23
diff changeset
    36
    wiki_tag.search:
57
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    37
        class: %wiki_tag.search_service_class%
24
cd389bf882f1 Some small corrections
ymh <ymh.work@gmail.com>
parents: 23
diff changeset
    38
        arguments: [@service_container]
23
b435f8055cb4 improve dynamic docs. create and lad class dynamically
ymh <ymh.work@gmail.com>
parents: 17
diff changeset
    39
57
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    40
    wiki_tag.document:
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    41
        class: %wiki_tag.document_service_class%
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    42
        arguments: [@service_container]
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    43
186c4121c7b3 add service tp copy tag from one document to another
ymh <ymh.work@gmail.com>
parents: 24
diff changeset
    44
1
06a22ff5d58d first commit forminimal bundle structure
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
#    wiki_tag.example:
06a22ff5d58d first commit forminimal bundle structure
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
#        class: %wiki_tag.example.class%
06a22ff5d58d first commit forminimal bundle structure
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
#        arguments: [@service_id, "plain_value", %parameter%]