PodsField_Pick::data_days_of_week PHP Method

data_days_of_week() public method

Data callback for US States
Since: 2.3
public data_days_of_week ( string $name = null, string | array $value = null, array $options = null, array $pod = null, integer $id = null ) : array
$name string The name of the field
$value string | array The value of the field
$options array Field options
$pod array Pod data
$id integer Item ID
return array
    public function data_days_of_week($name = null, $value = null, $options = null, $pod = null, $id = null)
    {
        /**
         * @var WP_Locale
         */
        global $wp_locale;
        return $wp_locale->weekday;
    }