1 | <?php |
||
18 | class TqExtension implements Extension |
||
19 | { |
||
20 | /** |
||
21 | * {@inheritDoc} |
||
22 | */ |
||
23 | 20 | public function getConfigKey() |
|
27 | |||
28 | /** |
||
29 | * {@inheritDoc} |
||
30 | */ |
||
31 | 4 | public function initialize(ExtensionManager $extensionManager) |
|
37 | |||
38 | /** |
||
39 | * {@inheritDoc} |
||
40 | */ |
||
41 | 4 | public function load(ContainerBuilder $container, array $config) |
|
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | * |
||
50 | * @see EnvironmentExtension::getEnvironmentReaderId() |
||
51 | */ |
||
52 | 4 | public function process(ContainerBuilder $container) |
|
55 | |||
56 | /** |
||
57 | * {@inheritDoc} |
||
58 | * |
||
59 | * @link http://symfony.com/doc/current/components/config/definition.html |
||
60 | * |
||
61 | * @example |
||
62 | * Drupal\TqExtension: |
||
63 | * wait_for_redirect: 60 |
||
64 | * email_account_strings: get_account_strings_for_email |
||
65 | * email_accounts: |
||
66 | * account_alias: |
||
67 | * imap: imap.gmail.com:993/imap/ssl |
||
68 | * email: [email protected] |
||
69 | * password: p4sswDstr_1 |
||
70 | * administrator: |
||
71 | * imap: imap.gmail.com:993/imap/ssl |
||
72 | * email: [email protected] |
||
73 | * password: p4sswDstr_2 |
||
74 | */ |
||
75 | 8 | public function configure(ArrayNodeDefinition $builder) |
|
118 | } |
||
119 |