| 1 |
<?php |
<?php |
| 2 |
// $Id: atom.module,v 1.13.2.5 2006/01/13 04:02:23 deekayen Exp $ |
// $Id: atom.module,v 1.13.2.6 2007/03/01 03:49:19 deekayen Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Implementation of hook_help |
* Implementation of hook_help |
| 135 |
$last_mod = 0; |
$last_mod = 0; |
| 136 |
while ($node = db_fetch_object($nodes)) { |
while ($node = db_fetch_object($nodes)) { |
| 137 |
$item = node_load(array('nid' => $node->nid)); |
$item = node_load(array('nid' => $node->nid)); |
| 138 |
|
if (!node_access('view', $item)) { |
| 139 |
|
continue; |
| 140 |
|
} |
| 141 |
|
|
| 142 |
$link = url("node/$node->nid", NULL, NULL, true); |
$link = url("node/$node->nid", NULL, NULL, true); |
| 143 |
|
|
| 144 |
if (node_hook($item, 'view')) { |
if (node_hook($item, 'view')) { |
| 237 |
|
|
| 238 |
return $output; |
return $output; |
| 239 |
} |
} |
|
|
|
|
?> |
|