| 1 |
<?php |
<?php |
| 2 |
// $Id: ejournal.module,v 1.9.2.37.2.20 2009/03/01 16:30:38 romca Exp $ |
// $Id: ejournal.module,v 1.9.2.37.2.26 2009/04/25 22:05:25 romca Exp $ |
| 3 |
|
|
| 4 |
/* |
/* |
| 5 |
* TODOs: |
* TODOs: |
| 3381 |
$contents = array(); |
$contents = array(); |
| 3382 |
$articles = _ejournal_issue_get_articles($journal, $issue->iid); |
$articles = _ejournal_issue_get_articles($journal, $issue->iid); |
| 3383 |
foreach ($articles as $article) { |
foreach ($articles as $article) { |
| 3384 |
$node = $print ? node_load(array ('nid' => $article->nid)) : (object)array(); |
$node = $print ? node_load(array ('nid' => $article->nid)) : ''; |
| 3385 |
$contents[$article->name][] = array( |
$contents[$article->name][] = array( |
| 3386 |
'article' => $article, |
'article' => $article, |
| 3387 |
'node' => $node, |
'node' => $node, |