Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Frequency.php
Go to the documentation of this file.
1 <?php
7 
9 {
13  protected static $_options;
14 
15  const CRON_DAILY = 'D';
16 
17  const CRON_WEEKLY = 'W';
18 
19  const CRON_MONTHLY = 'M';
20 
24  public function toOptionArray()
25  {
26  if (!self::$_options) {
27  self::$_options = [
28  ['label' => __('Daily'), 'value' => self::CRON_DAILY],
29  ['label' => __('Weekly'), 'value' => self::CRON_WEEKLY],
30  ['label' => __('Monthly'), 'value' => self::CRON_MONTHLY],
31  ];
32  }
33  return self::$_options;
34  }
35 }
__()
Definition: __.php:13