Views+XML Export
Eingetragen von snowboarder85 (45)
am 16.11.2010 - 22:56 Uhr in
am 16.11.2010 - 22:56 Uhr in
Hallo,
ich würde gerne eine View als XML exportieren.
Leider brauche ich noch eine Gruppierung sowie Sortierung von einem Feld.
Kann ich das irgendwie ermöglichen über theming in views?
Bsp. Sollen die Einträge nach folgendem Feld Gruppiert werden und anschließend nach Zeit sortiert werden.
"Feld Inhalt: Termin (field_lokation_termin) (ID: field_lokation_termin_value_1)"
Bisher sieht die Designausgabe ganze so aus:
<?php
// $Id: views-bonus-export-xml.tpl.php,v 1.2 2009/06/24 17:27:53 neclimdul Exp $
/**
* @file views-view-table.tpl.php
* Template to display a view as a table.
*
* - $title : The title of this group of rows. May be empty.
* - $rows: An array of row items. Each row is an array of content
* keyed by field ID.
* - $header: an array of headers(labels) for fields.
* - $themed_rows: a array of rows with themed fields.
* @ingroup views_templates
*/
// Short tags act bad below in the html so we print it here.
print '<?xml version="1.0" encoding="UTF-8" ?>';
?>
<xml>
<Termine>
<?php foreach ($themed_rows as $count => $row): ?>
<?php foreach ($row as $field => $content):
$label = $header[$field] ? $header[$field] : $field;
?>
<<?php print $label; ?>><?php print $content; ?></<?php print $label; ?>>
<?php endforeach; ?>
<?php endforeach; ?>
</Termine>
</xml>
Und hier das Feld:
<?php
// $Id: views-view-field.tpl.php,v 1.1 2008/05/16 22:22:32 merlinofchaos Exp $
/**
* This template is used to print a single field in a view. It is not
* actually used in default Views, as this is registered as a theme
* function which has better performance. For single overrides, the
* template is perfectly okay.
*
* Variables available:
* - $view: The view object
* - $field: The field handler object that can process the input
* - $row: The raw SQL result that can be used
* - $output: The processed output that will normally be used.
*
* When fetching output from the $row, this construct should be used:
* $data = $row->{$field->field_alias}
*
* The above will guarantee that you'll always get the correct data,
* regardless of any changes in the aliasing that might happen if
* the view is modified.
*/
?>
<?php print $output; ?>
- Anmelden oder Registrieren um Kommentare zu schreiben
Views Bonus Pack
am 17.11.2010 - 07:58 Uhr
Hallo.
Über das Modul [do:views_bonus Views Bonis Pack] kann man die Ergebnisse eines Views auch direkt als XML ausgeben.
Und eine Gruppierung lässt sich auch direkt in der Konfiguration des Views einstellen: http://screencast.com/t/NAFhG8F88f
hth,
Stefan
Tipp: Beachte die Verhaltensregeln des DrupalCenter.