source-code
Select entries from my development journal that I published them here so you can witness the level of complexity that I handle.
These entries help outline problems tacked during development and shed some light on the reasons behind some of my code designs.
Warning: these are rough, barely edited, journal entries. They might also contain some Spanglish. Probably most of the entries here have been written somewhere between 1130PM and 0530AM and 15 to 24 hour one man coding sprints. Do not expect perfect grammar.
Creating the Diálogo Digital Archivo section frontpage widget
---
Alright, using the XML data document style this the output I can get so far:
This is how the Customfield looks like:
nid));
$node = node_load($data->nid);
echo $node->field_portada_archivo[0]['filepath'];
//$result = db_query("SELECT filepath FROM {files} WHERE fid = %d", $fid);
?>
- To output Views as JSON and XML, use the views_datasource module
http://drupal.org/project/views_datasource
(This user had a similar problem with the Views Datasource module)
http://sprahga.com/content/drupal-views-generate-xml-datasource-flash-menu

