twin-elements/simple-sortable-bundle

Symfony 3 Sortable Bundle

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/twin-elements/simple-sortable-bundle

1.1.4 2022-09-15 21:17 UTC

This package is not auto-updated.

Last update: 2025-10-11 09:54:19 UTC


README

Symfony 3 Sortable bundle for CMS JELLINEK

  1. Download this bundle to your project first. The preferred way to do it is to use Composer package manager:

    $ composer require twin-elements/sortable-bundle

    NOTE: If you haven't installed Composer yet, check the [installation guide][2].

    NOTE: If you're not using Composer, add the SortableBundle to your autoloader manually.

  2. Add this bundle to your application's kernel:

    // app/AppKernel.php
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new TwinElements\SortableBundle\TwinElementsSortableBundle(),
            // ...
        );
    }
  3. Add to routing.yml:

    # app/config/routing.yml
    twin_elements_sortable:
            resource: "@TwinElementsSortableBundle/Controller/"
            type:     annotation
            prefix:   /

Usage

...