Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AgreementModeOptions.php
Go to the documentation of this file.
1 <?php
7 
9 {
10  const MODE_AUTO = 0;
11 
12  const MODE_MANUAL = 1;
13 
19  public function getOptionsArray()
20  {
21  return [
22  self::MODE_AUTO => __('Automatically'),
23  self::MODE_MANUAL => __('Manually')
24  ];
25  }
26 }
__()
Definition: __.php:13