This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Command; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputDefinition; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Output\OutputInterface; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Command; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputDefinition; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Output\OutputInterface; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Oro\Bundle\QueryDesignerBundle\QueryDesigner; | |
abstract class AbstractQueryConverter | |
{ | |
// .... | |
// Please add this new method (added new one due to BC. In master probably addTableAliasesForVirtualField will be refactored instead.) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace ClientCustomBundle\Async; | |
use Oro\Component\MessageQueue\Client\TopicSubscriberInterface; | |
use Oro\Component\MessageQueue\Consumption\MessageProcessorInterface; | |
use Oro\Component\MessageQueue\Transport\MessageInterface; | |
use Oro\Component\MessageQueue\Transport\SessionInterface; | |
use Oro\Bundle\DataAuditBundle\Async\Topics; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Oro\Bundle\CustomerBundle\Api\Processor\Create; | |
use Oro\Bundle\CustomerBundle\Entity\CustomerUser; | |
use Oro\Bundle\CustomerBundle\Entity\CustomerUserManager; | |
use Oro\Component\ChainProcessor\ContextInterface; | |
use Oro\Component\ChainProcessor\ProcessorInterface; | |
use Oro\Bundle\ApiBundle\Processor\Create\CreateContext; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block _checkout_form_fields_widget -%} | |
{% from 'OroAddressBundle::macros.html.twig' import renderAddress %} | |
{% if workflowItem.data.get('disallow_billing_address_edit') %} | |
{% set billingAddress = checkout.billingAddress %} | |
<fieldset class="grid__row grid__row--offset-none"> | |
<div class="grid__column grid__column--offset-y grid__column--6"> | |
{{ renderAddress(checkout.billingAddress) }} | |
</div> | |
</fieldset> | |
{% else %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// ****************** PLEASE READ ******************* | |
// STR: | |
// 1. Create ExtendedEntity with field 'label'. | |
// 2. Add new field to User entity. Field name: "extend" | |
// 3. Update schema | |
// 4. Create 2 records in DB (table: oro_ext_extendedentity). 1;ex_label_1 and 2;ex_label_2 | |
// 5. Go to System -> User management -> Users | |
// 6. Edit one of user and assign 'ex_label_1' to new field User::extend. Save record |