Skip to content
This repository has been archived by the owner on Dec 8, 2017. It is now read-only.

kbond/ZenstruckSlugifyBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZenstruckSlugifyBundle

DEPRECATED in favor of cocur/slugify which now includes a Symfony2 Bundle

This bundle provides integration of the Slugify library into Symfony2. A slugify service and twig filter is provided.

Installation

  1. Install with composer:

    php composer.phar require zenstruck/slugify-bundle
    
  2. Enable the bundle:

    // app/AppKernel.php
    
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Zenstruck\SlugifyBundle\ZenstruckSlugifyBundle()
        );
    }

Using the service

/** @var Cocur\Slugify\Slugify $slugify */
$slugify = $this->container->get('zenstruck.slugify');

Using the Twig filter

{{ 'Hello World!'|slugify }} {# hello-world #}

{# custom space separator #}
{{ 'Hello World!'|slugify('_') }} {# hello_world #}

{# custom space separator and custom replacement for emptyValue #}
{{ '####'|slugify('_', 'non') }} {# non #}

Full Default Configuration

zenstruck_slugify:
    twig: true #enable twig filter
    mode: array #iconv or array mode

About

[DEPRECATED] Adds a slugify filter to Symfony2

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages