You are here

IcalFields.php in Views iCal 8

Contains \Drupal\views_ical\Plugin\views\row\Fields.

File

src/Plugin/views/row/IcalFields.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views_ical\Plugin\views\row\Fields.
 */
namespace Drupal\views_ical\Plugin\views\row;

use Drupal\views\Plugin\views\row\Fields;

/**
 * The 'Ical Fields' row plugin
 *
 * This displays fields one after another, giving options for inline
 * or not.
 *
 * @ingroup views_row_plugins
 *
 * @ViewsRow(
 *   id = "ical_fields",
 *   title = @Translation("Legacy iCal Fields row"),
 *   help = @Translation("Displays the fields with a template. This is the legacy version, and it is recommended that you use the iCal fields row wizard."),
 *   theme = "views_view_ical_fields",
 *   display_types = {"feed"}
 * )
 */
class IcalFields extends Fields {

}

Classes

Namesort descending Description
IcalFields The 'Ical Fields' row plugin