<strong>Este calendário no seu site:</strong><br />
<pre>
-<iframe src="https://calendario.sarava.org/pt-br/widgets/calendario/dia" width="630" height="800" style="border: none;">
- <a href="https://calendario.sarava.org/pt-br/widgets/calendario/dia">Calendário</a>.
+<iframe src="https://calendario.sarava.org/pt-br/widgets/calendario/<?php print $link; ?>" width="630" height="800" style="border: none;">
+ <a href="https://calendario.sarava.org/pt-br/widgets/calendario/<?php print $link; ?>">Calendário</a>.
</iframe>
</pre>
return array(
'embed-widget' => array(
'template' => 'calendario-embed-widget',
- 'variables' => array('period' => NULL, 'type' => NULL),
+ 'variables' => array('link' => NULL),
),
);
}
/**
* Include a calendar widget.
- *
- * @todo
- * Set $period and $type.
*/
function calendario_widget($view = NULL) {
- return theme('embed-widget');
+ $display = $view->current_display;
+ $path = explode('/', $view->display[$display]->handler->options['path']);
+
+ switch ($path[1]) {
+ case 'dia':
+ case 'semana':
+ case 'mes':
+ case 'ano':
+ $type = NULL;
+ $period = $path[1];
+ //$date = isset($path[2]) ? .'/'. $path[2] : '';
+ $date = isset($view->args[0]) ? .'/'. $view->args[0] : '';
+ $argument = NULL;
+ $link = $period . $date;
+ break;
+
+ default:
+ $type = $path[1];
+ $period = $path[3];
+ //$date = isset($path[4]) ? .'/'. $path[4] : '';
+ $date = isset($view->args[1]) ? .'/'. $view->args[1] : '';
+ //$argument = $path[2];
+ $argument = isset($view->args[0]) ? .'/'. $view->args[0] : '';
+ $link = $type . $argument .'/'. $period . $date
+ break;
+ }
+
+ return theme('embed-widget', array('link' => $link));
}
/**