You are here

protected function date_ical_plugin_style_ical_feed::_get_option in Date iCal 7.3

Same name and namespace in other branches
  1. 7.2 includes/date_ical_plugin_style_ical_feed.inc \date_ical_plugin_style_ical_feed::_get_option()

Internal helper function.

3 calls to date_ical_plugin_style_ical_feed::_get_option()
date_ical_plugin_style_ical_feed::attach_to in includes/date_ical_plugin_style_ical_feed.inc
Sets up the iCal feed icon on calendar pages.
date_ical_plugin_style_ical_feed::options_form in includes/date_ical_plugin_style_ical_feed.inc
Build the form for setting the style plugin's options.
date_ical_plugin_style_ical_feed::render in includes/date_ical_plugin_style_ical_feed.inc
Render the event arrays returned by the row plugin into a VCALENDAR.

File

includes/date_ical_plugin_style_ical_feed.inc, line 15
Views style plugin for the Date iCal module.

Class

date_ical_plugin_style_ical_feed
Defines a Views style plugin that renders iCal feeds.

Code

protected function _get_option($option_name) {
  return isset($this->options[$option_name]) ? $this->options[$option_name] : '';
}