diff --git a/svc/contactform-bundle/1.0/assets/styles/layout/_svc-contactform.scss b/svc/contactform-bundle/1.0/assets/styles/layout/_svc-contactform.scss new file mode 100644 index 00000000..69fafac9 --- /dev/null +++ b/svc/contactform-bundle/1.0/assets/styles/layout/_svc-contactform.scss @@ -0,0 +1,8 @@ +.svc-contactform { + width: 100%; + max-width: 700px; + padding: 15px; + margin: auto; + border-radius: 15px; + box-shadow: 0 5px 5px rgba(0,0,0,.4); +} diff --git a/svc/contactform-bundle/1.0/config/packages/svc_contactform.yaml b/svc/contactform-bundle/1.0/config/packages/svc_contactform.yaml new file mode 100644 index 00000000..ad8bc58d --- /dev/null +++ b/svc/contactform-bundle/1.0/config/packages/svc_contactform.yaml @@ -0,0 +1,6 @@ +svc_contactform: + # Email adress for contact mails + contact_mail: dev@sv-systems.com + + # Which route should by called after amil sent + route_after_send: index diff --git a/svc/contactform-bundle/1.0/config/routes/svc_contactform.yaml b/svc/contactform-bundle/1.0/config/routes/svc_contactform.yaml new file mode 100644 index 00000000..23f513fe --- /dev/null +++ b/svc/contactform-bundle/1.0/config/routes/svc_contactform.yaml @@ -0,0 +1,3 @@ +_svc_contactform: + resource: '@SvcContactformBundle/src/Resources/config/routes.xml' + prefix: /svc-contactform/{_locale} diff --git a/svc/contactform-bundle/1.0/manifest.json b/svc/contactform-bundle/1.0/manifest.json new file mode 100644 index 00000000..8815745b --- /dev/null +++ b/svc/contactform-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Svc\\ContactformBundle\\SvcContactformBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "assets/": "assets/" + } +} diff --git a/svc/contactform-bundle/1.0/post-install.txt b/svc/contactform-bundle/1.0/post-install.txt new file mode 100644 index 00000000..0d7cc68b --- /dev/null +++ b/svc/contactform-bundle/1.0/post-install.txt @@ -0,0 +1 @@ + * Please adapt config/packages/svc-contactform.yaml diff --git a/svc/param-bundle/1.0/config/routes/svc_param.yaml b/svc/param-bundle/1.0/config/routes/svc_param.yaml new file mode 100755 index 00000000..b7e05bd5 --- /dev/null +++ b/svc/param-bundle/1.0/config/routes/svc_param.yaml @@ -0,0 +1,3 @@ +_svc_param: + resource: '@SvcParamBundle/src/Resources/config/routes.xml' + prefix: /svc-param/{_locale} diff --git a/svc/param-bundle/1.0/manifest.json b/svc/param-bundle/1.0/manifest.json new file mode 100644 index 00000000..3f05ca11 --- /dev/null +++ b/svc/param-bundle/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Svc\\ParamBundle\\SvcParamBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/svc/param-bundle/1.0/post-install.txt b/svc/param-bundle/1.0/post-install.txt new file mode 100644 index 00000000..a9399c81 --- /dev/null +++ b/svc/param-bundle/1.0/post-install.txt @@ -0,0 +1 @@ + * Please adapt config/routes/svc-param.yaml and define your route diff --git a/svc/util-bundle/1.0/config/packages/svc_util.yaml b/svc/util-bundle/1.0/config/packages/svc_util.yaml new file mode 100644 index 00000000..f1737fe9 --- /dev/null +++ b/svc/util-bundle/1.0/config/packages/svc_util.yaml @@ -0,0 +1,7 @@ +# Default configuration for "SvcUtilBundle" +svc_util: + mailer: + # Default sender mail address + mail_address: dev@sv-systems.com + # Default sender name + mail_name: 'Test User' diff --git a/svc/util-bundle/1.0/config/routes/svc_util.yaml b/svc/util-bundle/1.0/config/routes/svc_util.yaml new file mode 100755 index 00000000..ab8cfdab --- /dev/null +++ b/svc/util-bundle/1.0/config/routes/svc_util.yaml @@ -0,0 +1,3 @@ +_svc_util: + resource: '@SvcUtilBundle/src/Resources/config/routes.xml' + prefix: /svc-util/{_locale} diff --git a/svc/util-bundle/1.0/manifest.json b/svc/util-bundle/1.0/manifest.json new file mode 100644 index 00000000..e531e631 --- /dev/null +++ b/svc/util-bundle/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Svc\\UtilBundle\\SvcUtilBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/svc/util-bundle/1.0/post-install.txt b/svc/util-bundle/1.0/post-install.txt new file mode 100644 index 00000000..0150af59 --- /dev/null +++ b/svc/util-bundle/1.0/post-install.txt @@ -0,0 +1 @@ + * Please adapt config/packages/svc-util.yaml