2017 © Pedro Peláez
 

symfony-bundle seo-bundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

image

kunstmaan/seo-bundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  • Wednesday, November 2, 2016
  • by Kunstmaan
  • Repository
  • 16 Watchers
  • 24 Stars
  • 15,582 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 56 Versions
  • 1 % Grown

The README.md

KunstmaanSeoBundle

Build Status Total Downloads Latest Stable Version Analytics, (*1)

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well., (*2)

View more screenshots and information https://cms.kunstmaan.be., (*3)

Installation

This bundle is compatible with all Symfony 3.* releases. More information about installing can be found in this line by line walkthrough of installing Symfony and all our bundles, please refer to the Getting Started guide and enjoy the full blown experience., (*4)

Symfony 2.2

If you want to use this bundle for a Symfony 2.2 release, use the 2.2 branch., (*5)

Usage

Metadata

In your template define the following to import all SEO metadata. This SEO metadata is set in the SEO tab for your page in the backend., (*6)

    {% if page is defined %}
        {{ render_seo_metadata_for(page) }}
    {% endif %}

For the title there are several options. There are several twig functions which return a title based on which is found first. If they are all null or empty it'll return an empty string., (*7)

The get_title_for twig function used the following order: * SEO title * Page title If nothing is set it'll return an empty string., (*8)

Another option is get_title_for_page_or_default. This twig function accepts a default string that is used as a fallback. * SEO title * default string * Page title, (*9)

You can also access the raw SEO object through the get_seo_for function., (*10)

Social Widgets

And finally the SEO bundle is also capable of generating 'social widgets' such as a facebook like button. For now only facebook like & linkedin product are supported., (*11)

Use the get_social_widget_for function. Example: get_social_widget_for(page, 'linkedin')., (*12)

You can override the views for all the functions that generate HTML output., (*13)

Google Analytics

Added to the SEO bundle are a few helpers to control Google Analytics., (*14)

These helpers rely on the inclusion of the analytics.js file that's provided in this bundle. The script itself relies on jQuery to be present., (*15)

    {% javascripts
        'vendor/jquery/jquery.js'
        '@KunstmaanSeoBundle/Resources/public/js/analytics.js'
        output='frontend/footer.js'
    %}
        <script src='{{ asset_url }}'></script>
    {% endjavascripts %}

First up is google_analytics_initialize which looks for the Google Analytics Account ID in your config., (*16)

    parameters:
        google.analytics.account_id: 'UA-XXXXX-1'

You can also optionally pass the account_id as an argument to the function., (*17)

    {{ google_analytics_initialize({'account_id': 'UA-XXXXX-1'}) }}

This script will set up a queue with commands (_gaq) and the Google Analytics script itself (_ga). When Twig is in debug mode it'll not initialize the script but instead it'll just dump all requests to the console. This way you can easily monitor what Google Analytics is planning on doing in your production environment., (*18)

The script will automatically track downloads, external links, links to email addresses & button clicks., (*19)

Finally, we've also provided a JavaScript function which you'll have to call manually once the Twitter/Facebook SDK's have been loaded. This will then bind a callback via the SDKs which will log the events., (*20)

    googleAnalyticsApi.trackSocial('optional pageurl', 'optional trackername')

We've also added a helper for e-commerce tracking. You have to set up an Order object with its OrderItems and pass it along to the google_analytics_track_order twig function. This will output the correctly formatted syntax for Google Analytics., (*21)

    public function service(ContainerInterface $container, Request $request, RenderContext $renderContext)
    {
        $order = (new Order())
            ->setShippingTotal(5)
            ->setTransactionID('ORD2013-00231');

        $order->orderItems[] = (new OrderItem())
            ->setName('ACME 3000 Starter Kit')
            ->setQuantity(20)
            ->setUnitPrice(13.5)
            ->setTaxes((20 * 13.5) * 0.21)
            ->setCategoryorVariation('World Domination')
            ->setSKU('ACM300-SK');

        $order->orderItems[] = (new OrderItem())
            ->setName('Super Duper Kit')
            ->setQuantity(1)
            ->setUnitPrice(3000)
            ->setTaxes((3000) * 0.21)
            ->setCategoryorVariation('Fun')
            ->setSKU('SDK-3000');

        $renderContext['order'] = $order;
    }
    {{ google_analytics_track_order(order) }}

The Versions

02/11 2016

dev-sf3

dev-sf3 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

02/11 2016

dev-master

9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

13/10 2016

dev-revert-1302-bugfix/multidomain

dev-revert-1302-bugfix/multidomain https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

13/10 2016

dev-revert-1336-fix#twig-get-name

dev-revert-1336-fix#twig-get-name https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

20/06 2016

4.0.0-RC1

4.0.0.0-RC1 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

03/06 2016

dev-revert-1243-hotfix/generator-translations

dev-revert-1243-hotfix/generator-translations https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

18/02 2016

3.5.1

3.5.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

09/02 2016

3.5.x-dev

3.5.9999999.9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

09/02 2016

3.5.0

3.5.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

13/01 2016

dev-fix-sensiolabs-insight

dev-fix-sensiolabs-insight https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

20/11 2015

3.4.x-dev

3.4.9999999.9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

20/11 2015

3.4.2

3.4.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

29/10 2015

3.3.x-dev

3.3.9999999.9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

29/10 2015

3.3.4

3.3.4.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

29/10 2015

3.2.x-dev

3.2.9999999.9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

29/10 2015

3.2.6

3.2.6.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

29/10 2015

3.1.x-dev

3.1.9999999.9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

29/10 2015

3.1.4

3.1.4.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

23/10 2015

3.4.1

3.4.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

05/10 2015

3.4.0

3.4.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

02/10 2015

3.3.3

3.3.3.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

18/09 2015

3.3.2

3.3.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

16/09 2015

3.3.1

3.3.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

27/08 2015

3.3.0

3.3.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

19/07 2015

3.2.2

3.2.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

19/07 2015

3.2.3

3.2.3.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

19/07 2015

3.2.4

3.2.4.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

19/07 2015

3.2.4.1

3.2.4.1 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

19/07 2015

3.2.5

3.2.5.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

17/07 2015

3.2.1.1

3.2.1.1 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

10/07 2015

3.2.1

3.2.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

02/06 2015

3.2.0

3.2.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

28/05 2015

3.1.2

3.1.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

28/05 2015

3.1.3

3.1.3.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

27/04 2015

3.1.1

3.1.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

10/04 2015

3.1.0

3.1.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

01/03 2015

3.0.x-dev

3.0.9999999.9999999-dev https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

01/03 2015

3.0.2

3.0.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

01/03 2015

3.0.3

3.0.3.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

06/01 2015

3.0.1

3.0.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

10/12 2014

3.0.0

3.0.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

17/04 2014

v2.3.6

2.3.6.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

05/04 2014

v2.3.5

2.3.5.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

04/04 2014

v2.3.4

2.3.4.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

04/04 2014

v2.3.3

2.3.3.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

04/03 2014

v2.3.2

2.3.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

The Development Requires

cms seo meta opengraph kunstmaan

30/10 2013

v2.2.9

2.2.9.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

The Development Requires

cms seo meta opengraph kunstmaan

12/08 2013

v2.3.1

2.3.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

The Development Requires

cms seo meta opengraph kunstmaan

12/08 2013

v2.3

2.3.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

17/06 2013

v2.2.8

2.2.8.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

25/04 2013

v2.2.2

2.2.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

14/03 2013

v2.2.1

2.2.1.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

04/02 2013

v2.2

2.2.0.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan

18/01 2013

v2.1.2

2.1.2.0 https://github.com/Kunstmaan/KunstmaanSeoBundle

Annotating content with metadata for social sharing and seo purposes cannot be overlooked nowadays. The KunstmaanSeoBundle contains default editing functionality for OpenGraph data, meta descriptions, keywords and titles and Metriweb tags. Because the metatagging and tracking options are always changing, a free field to add custom header information is provided as well.

  Sources   Download

MIT

The Requires

 

cms seo meta opengraph kunstmaan