123456789101112131415161718192021 |
- <?php
- namespace Dotdigitalgroup\Email\Model\Config\Source\Datamapping;
- class Visibility implements \Magento\Framework\Data\OptionSourceInterface
- {
- /**
- * Get options.
- *
- * @return array
- */
- public function toOptionArray()
- {
- $dataType = [
- ['value' => 'Private', 'label' => __('Private')],
- ['value' => 'Public', 'label' => __('Public')],
- ];
- return $dataType;
- }
- }
|