File: //proc/1526/cwd/shoetique/wp-content/plugins/wp-all-export-pro/src/App/Field/CustomLabel1.php
<?php
namespace Wpae\App\Field;
class CustomLabel1 extends Field
{
const SECTION = 'advancedAttributes';
public function getValue($snippetData) {
$advancedAttributes = $this->feed->getSectionFeedData( self::SECTION );
if ( ! isset( $advancedAttributes['customLabel1'] ) ) {
return '';
}
$this->mappings = $advancedAttributes['customLabel1Mappings'];
return $advancedAttributes['customLabel1'];
}
public function getFieldName()
{
return 'custom_label_1';
}
}