integrated / content-bundle
Integrated Content Bundle
Requires
- php: >=5.4
- ext-intl: *
- ext-mongo: ~1.2
- braincrafted/bootstrap-bundle: ~2.2.0
- doctrine/doctrine-fixtures-bundle: ~2.3
- doctrine/mongodb: ~1.3
- doctrine/mongodb-odm: ~1.1.2
- doctrine/mongodb-odm-bundle: ~3.2
- friendsofsymfony/jsrouting-bundle: ~1.5
- gregwar/image-bundle: ~2.1.1
- integrated/asset-bundle: ~0.7
- integrated/block-bundle: ~0.7
- integrated/formtype-bundle: ~0.7
- integrated/image-bundle: ~0.7
- integrated/library: ~0.7
- integrated/locking-bundle: ~0.7
- integrated/menu-bundle: ~0.7
- integrated/slug-bundle: ~0.7
- integrated/solr-bundle: ~0.7
- integrated/workflow-bundle: ~0.7
- knplabs/knp-menu-bundle: ~2.1
- knplabs/knp-paginator-bundle: ~2.5
- nelmio/alice: ~1.7
- symfony/symfony: ~2.8 || ~3.0
- twbs/bootstrap: ~3.3
- vihuvac/recaptcha-bundle: ~2.1.4
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^2.8
Suggests
- integrated/page-bundle: ~0.5
- integrated/website-bundle: ~0.5
- dev-master
- 0.7.x-dev
- 0.7.1.x-dev
- 0.7
- 0.6.x-dev
- 0.6
- 0.5.x-dev
- 0.5.1.x-dev
- 0.5.1.2
- 0.5.1.1
- 0.5.1
- 0.5
- 0.4.1.x-dev
- 0.4
- 0.3
- 0.2.10
- 0.2.9
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2
- 0.1.1.12
- 0.1.1.11
- 0.1.1.10
- 0.1.1.9
- 0.1.1.8
- 0.1.1.7
- 0.1.1.6
- 0.1.1.5
- 0.1.1.4
- 0.1.1.3
- 0.1.1.2
- 0.1.0
- dev-INTEGRATED-1169
- dev-INTEGRATED-1254
- dev-INTEGRATED-1222-poll-bundle-block
- dev-INTEGRATED-1173-add-text-after-submit-op
- dev-dynamicurls
- dev-INTEGRATED-1078
- dev-INTEGRATED-252-disable-submit-button-aft
- dev-INTEGRATED-970-use-logo-main-logo-and-na
- dev-demo
- dev-INTEGRATED-988-upload-fails-with-storage
- dev-INTEGRATED-951
- dev-with-error
- dev-without-error
- dev-INTEGRATED-219
- dev-INTEGRATED-945-multithread-option-for-so
- dev-INTEGRATED-880-spike-refactor-content-bu
- dev-INTEGRATED-370-new
- dev-INTEGRATED-863-add-alt-field-to-image
- dev-INTEGRATED-861-refactor-contentcontrolle
- dev-INTEGRATED-370
- dev-feature/block
- dev-INTEGRATED-733-use-storage-object-instea
- dev-INTEGRATED-860-dont-store-content-type-f
- dev-INTEGRATED-689-author-facet
- dev-prototype/history
- dev-feature/history
- dev-INTEGRATED-668-solr-propertytype
- dev-INTEGRATED-657-error-when-image-has-no-f
- dev-INTEGRATED-364-new-getters-for-parsed-ar
- dev-INTEGRATED-548-content-changes-for-custo
- dev-INTEGRATED-586-inject-active-document-to
- dev-feature/assets
- dev-INTEGRATED-542-use-stable-version-for-do
- dev-feature/block-2.7
- dev-feature/imageonhomepage
- dev-feature/locking-and-workflow
This package is auto-updated.
Last update: 2024-10-26 21:24:19 UTC
README
This bundle provides the document structure for Integrated.
Requirements
- See the require section in the composer.json
Features
- Document structure
- Base templates for Integrated
Documentation
Installation
This bundle can be installed following these steps:
Install using composer
$ php composer.phar require integrated/content-bundle
Enable the bundle
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Integrated\Bundle\ContentBundle\IntegratedContentBundle()
// ...
);
}
Import the routing
# app/config/routing.yml
integrated_content:
resource: @IntegratedContentBundle/Resources/config/routing.xml
Configuring the assets
The IntegratedContentBundle uses the SpBowerBundle for handling the external resources.
# app/config/config.yml
sp_bower:
bundles:
IntegratedContentBundle: ~
The base template of the ContentBundle uses two named assets:
integrated_js
integrated_css
These two named assets must be defined in the app/config/config.yml
.
The IntegratedContentBundle uses Sass for generating the stylesheet, in order to use these files a Sass filter can be used:
# app/config/config.yml
assetic:
# ...
filters:
sass:
bin: /usr/bin/sass
apply_to: "\.scss$"
style: compressed
# ...
assets:
integrated_css:
inputs:
- @IntegratedContentBundle/Resources/public/sass/main.scss
filters:
- sass
output: css/main.css
integrated_js:
inputs:
# Add your custom javascript files here
License
This bundle is under the MIT license. See the complete license in the bundle:
LICENSE
Contributing
Pull requests are welcome. Please see our CONTRIBUTING guide.
About
This bundle is part of the Integrated project. You can read more about this project on the Integrated for Developers website.