Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
IncludeImage.php
Go to the documentation of this file.
1 <?php
12 
18 {
22  const INCLUDE_NONE = 'none';
23 
24  const INCLUDE_BASE = 'base';
25 
26  const INCLUDE_ALL = 'all';
27 
35  public function toOptionArray()
36  {
37  return [
38  self::INCLUDE_NONE => __('None'),
39  self::INCLUDE_BASE => __('Base Only'),
40  self::INCLUDE_ALL => __('All')
41  ];
42  }
43 }
__()
Definition: __.php:13