2017 © Pedro Peláez
 

symfony-bundle barcode-bundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

image

mopa-liip/barcode-bundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

  • Friday, April 29, 2016
  • by FlameStorm
  • Repository
  • 1 Watchers
  • 1 Stars
  • 34 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 23 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

README

Introduction

MopaBarcodeBundle integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig. I did include phpqrcode form http://sourceforge.net/projects/phpqrcode/ due to changes in its config. Is just a shot and shouldnt be considered to be perfect. Feel free to fork and PR., (*1)

Prerequisites

Installation

  1. Add this bundle to your composer.json:
{
    "require": {
        // ...
        "mopa-liip/barcode-bundle": "*",
        "liip/imagine-bundle": "*", // handles image installation via requirements
        // if you want to use the zend barcodes
        "zendframework/zend-barcode": "~2.3.7",
        "zendframework/zend-servicemanager": "~2.3.7",
        // optionally for playground
        "mopa/bootstrap-sandbox-bundle": "dev-master"
        // also read the readme:
        // https://github.com/phiamo/MopaBootstrapSandboxBundle
    }
}
  1. Add this bundle to your app/AppKernel.php:

``` php // application/ApplicationKernel.php public function registerBundles() { return array( // ... new Liip\ImagineBundle\LiipImagineBundle(), new Mopa\Bundle\BarcodeBundle\MopaBarcodeBundle(), ); }, (*2)


## Demo Include MopaBoostrapBundle in your app: https://github.com/phiamo/MopaBootstrapBundle Include this snipplet in your routing.yml ``` yaml my_barcode_playground: resource: "@MopaBarcodeBundle/Resources/config/routing/barcode_playground.yml" prefix: /

Add this to your config.yml:, (*3)

``` yaml imports: - { resource: @MopaBootstrapSandboxBundle/Resources/config/examples/example_menu.yml } - { resource: @MopaBootstrapSandboxBundle/Resources/config/examples/example_navbar.yml }, (*4)


And try http://{yoursymfonyapp}/mopa/barcode/playground ## Usage Have a look into the https://github.com/phiamo/MopaBarcodeBundle/blob/master/Controller/BarcodeController.php to see it in action Supported Barcode Types depend on your Zend2 installation If you installed it have a look into https://github.com/phiamo/MopaBarcodeBundle/blob/master/Model/BarcodeTypes.php The Type given to the service is either the int or the string defined in the types arrays keys and values To get the service in your controllers etc you can use $bmanager = $this->container->get('mopa_barcode.barcode_service'); $bmanager->saveAs($type, $text, $file); to save a Barcode of $type with $text as $file or $bmanager->get($type, $enctext, $absolute = false); to get the url to the file where $enctext is urlencoded and $absolute is an boolean to get either the absolute or the relative path (default) ## Twig Helper There is also a twig helper registered: ``` jinja <p><img alt="[barcode]" src="{{ mopa_barcode_url('code128', '123456789', {'barcodeOptions': {}, 'rendererOptions': {}}) }}"></p>

Of course the dict (3rd parameter is optional) have a look into http://framework.zend.com/manual/2.1/en/modules/zend.barcode.creation.html to see what options can be set., (*5)

the dict also takes a noCache boolean, i wont explain it further, (*6)

Using the bundle directly

To Make usage e.g. of the Playground in your app, just copy the playground.html.twig to app/Resources/MopaBootstrapBundle/views/Barcode/playground.html.twig and modify as you like, (*7)

Using the Bundle as a urlservice

If you would like to generate the barcodes on the fly include in your routing.yml, (*8)

``` yaml my_barcode_display: resource: "@MopaBarcodeBundle/Resources/config/routing/barcode_display.yml" prefix: /, (*9)

And just use Urls to generate your barcodes:

http://{yoursymfonyapp}/mopa/barcode/send/{type}/{enctext}

## Using QR code overlays

Add this to twig template.

``` jinja
    <img src="{{ mopa_barcode_url('qr', "Text to put in QR code", {'size':2, 'level':3, 'margin':0, 'useOverlay': true}) }}"/>

Changing overlay images

Add and edit this to your parameters.yml file., (*10)

mopa_barcode.overlay_images_path: Resources/qr_overlays

For each QR code level (size) you have to generate overlay image. Look in `Resources/qr_overlays' path of bundle for example overlay images., (*11)

TODO

- Load the different Barcode Libs in a different way. should't be done by ints :(

Known Issues

- Nothing what could not be done in another way, probably some will arise as soon as its published
  So make issues!
- There are probably things missing, so make PR's

The Versions

27/04 2016

1.1.5

1.1.5.0 https://github.com/FlameStorm/MopaBarcodeBundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

  Sources   Download

The Requires

 

The Development Requires

twig zend barcode qr code

27/04 2016

1.1.4

1.1.4.0 https://github.com/FlameStorm/MopaBarcodeBundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

  Sources   Download

The Requires

 

The Development Requires

twig zend barcode qr code

27/04 2016

1.1.3

1.1.3.0 https://github.com/FlameStorm/MopaBarcodeBundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

  Sources   Download

The Requires

 

The Development Requires

twig zend barcode qr code

27/04 2016

1.1.2

1.1.2.0 https://github.com/FlameStorm/MopaBarcodeBundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

  Sources   Download

The Requires

 

The Development Requires

twig zend barcode qr code

25/04 2016

1.1.1

1.1.1.0 https://github.com/FlameStorm/MopaBarcodeBundle

Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig

  Sources   Download

The Requires

 

The Development Requires

twig zend barcode qr code