* @copyright 2019 easymarketing AG * @license https://opensource.org/licenses/GPL-3.0 GNU General Public License version 3 */ namespace Emarketing\Service; /** * Class Attributes * @package Emarketing\Service */ class Attributes { /** * @param $idLang * @return array */ public function buildAttributeInformation($idLang) { $attrGroups = \AttributeGroup::getAttributesGroups($idLang); $features = \Feature::getFeatures($idLang); $mapData = array( 'attributes' => $attrGroups, 'features' => $features ); return $mapData; } }