| 1 |
<?php |
<?php |
| 2 |
// $Id: node_export.module,v 1.1.2.2 2009/09/08 10:14:12 danielb Exp $ |
// $Id: node_export.module,v 1.1.2.5 2009/10/31 06:11:59 danielb Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 553 |
|
|
| 554 |
if (isset($node_code)) { |
if (isset($node_code)) { |
| 555 |
$result = node_export_import($node_code); |
$result = node_export_import($node_code); |
| 556 |
if ($result === FALSE) { |
if (!empty($result)) { |
|
// There was a problem with types? |
|
|
drupal_set_message(t('Problem found with the import file. Check the node types exist.'), 'error'); |
|
|
} |
|
|
else if (!empty($result)) { |
|
| 557 |
return $result; |
return $result; |
| 558 |
} |
} |
| 559 |
} |
} |