LLMS_Analytics_Widget::get_posted_dates()
Retrieve posted dates.
Return Return
(string[]|string)
Source Source
File: includes/abstracts/abstract.llms.analytics.widget.php
protected function get_posted_dates() { $dates = llms_filter_input_sanitize_string( INPUT_POST, 'dates', array( FILTER_REQUIRE_ARRAY ) ); return $dates ? $dates : ''; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.9.0 | Stop using deprecated FILTER_SANITIZE_STRING . |
3.0.0 | Introduced. |