New module 'Calendar'

This commit is contained in:
Manuel Cillero 2017-07-26 20:02:02 +02:00
parent 280a1af4fe
commit f697b66461
99 changed files with 13284 additions and 0 deletions

View file

@ -0,0 +1,82 @@
<?php
//$Id: calendar_ical.views.inc,v 1.1.2.6 2009/02/16 23:46:22 karens Exp $
//views_include_handlers();
/**
* Implementation of hook_views_plugins
*/
function calendar_ical_views_plugins() {
$path = drupal_get_path('module', 'calendar_ical');
$views_path = drupal_get_path('module', 'views');
require_once "./$path/theme.inc";
$data = array(
'module' => 'calendar_ical', // This just tells our themes are elsewhere.
'display' => array(
// Parents are not really displays, just needed so the files can
// be included.
'parent' => array(
'no ui' => TRUE,
'handler' => 'views_plugin_display',
'path' => "$views_path/plugins",
'parent' => '',
),
'page' => array(
'no ui' => TRUE,
'handler' => 'views_plugin_display_page',
'path' => "$views_path/plugins",
'parent' => 'parent',
),
'calendar_ical' => array(
'title' => t('iCal feed'),
'help' => t('Display the view as an iCal feed.'),
'handler' => 'calendar_plugin_display_ical',
'path' => "$path",
'parent' => 'page',
'uses hook menu' => TRUE,
'theme' => 'views_view',
'no ui' => TRUE,
'no remove' => TRUE,
'use ajax' => FALSE,
'use pager' => FALSE,
'accept attachments' => FALSE,
'admin' => t('iCal feed'),
'help topic' => 'display-ical',
),
),
'style' => array(
'parent' => array(
// this isn't really a display but is necessary so the file can
// be included.
'no ui' => TRUE,
'handler' => 'views_plugin_style',
'path' => "$views_path/plugins",
'parent' => '',
),
'rss' => array(
// this isn't really a display but is necessary so the file can
// be included.
'no ui' => TRUE,
'handler' => 'views_plugin_style_rss',
'path' => "$views_path/plugins",
'parent' => 'parent',
),
'ical' => array(
'title' => t('iCal feed'),
'help' => t('Generates an iCal feed from a view.'),
'handler' => 'calendar_plugin_style_ical',
'path' => "$path",
'theme' => 'calendar_view_ical',
'theme file' => 'theme.inc',
'theme path' => "$path",
'parent' => 'rss',
'uses row plugin' => FALSE,
'uses fields' => TRUE,
'uses row plugin' => FALSE,
'uses options' => TRUE,
'type' => 'ical',
'even empty' => TRUE,
),
),
);
return $data;
}