Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
OptionProvider.php
Go to the documentation of this file.
1 <?php
9 
11 
16 {
20  const PERMANENT = 301;
21 
25  const TEMPORARY = 302;
26 
30  public function toOptionArray()
31  {
32  return [
33  0 => __('No'),
34  self::TEMPORARY => __('Temporary (302)'),
35  self::PERMANENT => __('Permanent (301)'),
36  ];
37  }
38 }
__()
Definition: __.php:13