greywolfs/fine-diff-bundle

FineDiff Symfony3 Bundle implementation

Installs: 1 343

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 2

Type:symfony-bundle

1.12 2017-10-30 22:32 UTC

This package is not auto-updated.

Last update: 2024-05-12 02:51:22 UTC


README

Original fine diff library:

Installation

Add to composer

Run in command line:

$ composer require greywolfs/fine-diff-bundle

Or add with hand to composer.json:

    "require": {
        "greywolfs/fine-diff-bundle": "~1.10"
    }

Register the bundle

Add the app

<?php
    // app/AppKernel.php
    
    public function registerBundles()
	{
		$bundles = array(
			// ...
			new Greywolfs\FineDiffBundle\GreywolfsPHPFineDiffBundle(),
		);
	}

Configure

Optional. You can change the default granularity.

# app/config/config.yml

greywolfs_fine_diff:
    default_granularity: character # This is the default granularity. Alternatives: 'word', 'sentence' and 'paragraph'

Usage

There are two twig function:

  • renderDiff(): compare two strings
  • renderHtmlTextDiff(): compare two strings which contain HTML tags. Remove tags with strip_tags before compare strings
{{ renderDiff(oldValue, newValue) }}
{{ renderDiff(oldValue, newValue, 'word') }}

{{ renderHtmlTextDiff(oldValue, newValue) }}
{{ renderHtmlTextDiff(oldValue, newValue, 'sentence') }}