W3cubDocs

/Symfony 3.0

Symfony\Component\Translation\Catalogue\AbstractOperation

abstract class AbstractOperation implements OperationInterface

Base catalogues binary operation class.

A catalogue binary operation performs operation on source (the left argument) and target (the right argument) catalogues.

Methods

__construct(MessageCatalogueInterface $source, MessageCatalogueInterface $target)
array getDomains()

Returns domains affected by operation.

array getMessages(string $domain)

Returns all valid messages ('all') after operation.

array getNewMessages(string $domain)

Returns new messages ('new') after operation.

array getObsoleteMessages(string $domain)

Returns obsolete messages ('obsolete') after operation.

MessageCatalogueInterface getResult()

Returns resulting catalogue ('result').

Details

public __construct(MessageCatalogueInterface $source, MessageCatalogueInterface $target)

Parameters

MessageCatalogueInterface $source The source catalogue
MessageCatalogueInterface $target The target catalogue

Exceptions

LogicException

public array getDomains()

Returns domains affected by operation.

Return Value

array

public array getMessages(string $domain)

Returns all valid messages ('all') after operation.

Parameters

string $domain

Return Value

array

public array getNewMessages(string $domain)

Returns new messages ('new') after operation.

Parameters

string $domain

Return Value

array

public array getObsoleteMessages(string $domain)

Returns obsolete messages ('obsolete') after operation.

Parameters

string $domain

Return Value

array

public MessageCatalogueInterface getResult()

Returns resulting catalogue ('result').

© 2004–2016 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/3.0/Symfony/Component/Translation/Catalogue/AbstractOperation.html