for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Attribute\Set\Actions\Processors\EavAttributeGroupCreateProcessor
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2019 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/techdivision/import-attribute-set
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Attribute\Set\Actions\Processors;
use TechDivision\Import\Attribute\Set\Utils\SqlStatementKeys;
use TechDivision\Import\Actions\Processors\AbstractCreateProcessor;
* The EAV attribute group create processor implementation.
class EavAttributeGroupCreateProcessor extends AbstractCreateProcessor
{
* Return's the array with the SQL statements that has to be prepared.
* @return array The SQL statements to be prepared
* @see \TechDivision\Import\Actions\Processors\AbstractBaseProcessor::getStatements()
protected function getStatements()
// return the array with the SQL statements that has to be prepared
return array(
SqlStatementKeys::CREATE_ATTRIBUTE_GROUP => $this->loadStatement(SqlStatementKeys::CREATE_ATTRIBUTE_GROUP)
);
}