| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 | 
							- <?php
 
- /**
 
-  * @file
 
-  * Documents Node export's hooks for api reference.
 
-  */
 
- /**
 
-  * Override export access on a node.
 
-  *
 
-  * Let other modules alter this - for example to only allow some users to
 
-  * export specific nodes or types.
 
-  *
 
-  * @param &$access
 
-  *   Boolean access value for current user.
 
-  * @param $node
 
-  *   The node to determine access for.
 
-  */
 
- function hook_node_export_access_export_alter(&$access, $node) {
 
-   // no example code
 
- }
 
- /**
 
-  * Override import access on a node.
 
-  *
 
-  * Let other modules alter this - for example to only allow some users to
 
-  * import specific nodes or types.
 
-  *
 
-  * @param &$access
 
-  *   Boolean access value for current user.
 
-  * @param $node
 
-  *   The node to determine access for.
 
-  */
 
- function hook_node_export_access_import_alter(&$access, $node) {
 
-   // no example code
 
- }
 
- /**
 
-  * Override one line of the export code output.
 
-  *
 
-  * @param &$out
 
-  *   The line of output.
 
-  * @param $tab
 
-  *   The $tab variable from node_export_node_encode().
 
-  * @param $key
 
-  *   The $key variable from node_export_node_encode().
 
-  * @param $value
 
-  *   The $value variable from node_export_node_encode().
 
-  * @param $iteration
 
-  *   The $iteration variable from node_export_node_encode().
 
-  */
 
- function hook_node_export_node_encode_line_alter(&$out, $tab, $key, $value, $iteration) {
 
-   // Start with something like this, and work on it:
 
-   $out = $tab . "  '" . $key . "' => " . node_export_node_encode($value, $iteration) . ",\n";
 
- }
 
- /**
 
-  * Manipulate a node on export.
 
-  *
 
-  * @param &$node
 
-  *   The node to alter.
 
-  * @param $original_node
 
-  *   The unaltered node.
 
-  */
 
- function hook_node_export_node_alter(&$node, $original_node) {
 
-   // no example code
 
- }
 
- /**
 
-  * Manipulate a node on import.
 
-  *
 
-  * @param &$node
 
-  *   The node to alter.
 
-  * @param $original_node
 
-  *   The unaltered node.
 
-  * @param $save
 
-  *   Whether the node will be saved by node_export_import().
 
-  */
 
- function hook_node_export_node_import_alter(&$node, $original_node, $save) {
 
-   // no example code
 
- }
 
- /**
 
-  * Manipulate node array before export.
 
-  *
 
-  * The purpose of this is to allow a module to check nodes in the array for
 
-  * two or more nodes that must retain a relationship, and to add/remove other
 
-  * data to the array to assist with maintaining dependencies, relationships,
 
-  * references, and additional data required by the nodes.
 
-  *
 
-  * @param &$nodes
 
-  *   The array of nodes to alter.
 
-  * @param $format
 
-  *   The format of node code being used.
 
-  */
 
- function hook_node_export_alter(&$nodes, $format) {
 
-   // no example code
 
- }
 
- /**
 
-  * Manipulate node array before import.
 
-  *
 
-  * The purpose of this is to allow a module to check nodes in the array for
 
-  * two or more nodes that must retain a relationship, and to add/remove other
 
-  * data to the array to assist with maintaining dependencies, relationships,
 
-  * references, and additional data required by the nodes.
 
-  *
 
-  * @param &$nodes
 
-  *   The array of nodes to alter.
 
-  * @param $format
 
-  *   The format of node code being used.
 
-  * @param $save
 
-  *   Whether the nodes will be saved by node_export_import().
 
-  */
 
- function hook_node_export_import_alter(&$nodes, $format, $save) {
 
-   // no example code
 
- }
 
- /**
 
-  * Manipulate node array after import.
 
-  *
 
-  * The purpose of this is to allow a module to check nodes in the array for
 
-  * two or more nodes that must retain a relationship, and to add/remove other
 
-  * data to the array to assist with maintaining dependencies, relationships,
 
-  * references, and additional data required by the nodes.
 
-  *
 
-  * @param &$nodes
 
-  *   The array of nodes to alter - IMPORTANT: keyed by node id.
 
-  * @param $format
 
-  *   The format of node code being used.
 
-  * @param $save
 
-  *   Whether the nodes were saved by node_export_import().
 
-  */
 
- function hook_node_export_after_import_alter(&$nodes, $format, $save) {
 
-   // no example code
 
- }
 
- /**
 
-  * Manipulate the code string before import.
 
-  *
 
-  * @param &$code_string
 
-  *   The export code.
 
-  */
 
- function hook_node_export_decode_alter(&$code_string) {
 
-   // no example code
 
- }
 
- /**
 
-  * Manipulate the code string upon export.
 
-  *
 
-  * @param &$code_string
 
-  *   The Node export code.  Leave as FALSE for no change.
 
-  * @param $nodes
 
-  *   The node.
 
-  * @param $format
 
-  *   A string indicating what the export format is, and whether to do anything.
 
-  */
 
- function hook_node_export_encode_alter(&$code_string, $nodes, $format) {
 
-   // no example code
 
- }
 
- /**
 
-  * Register a format handler.
 
-  *
 
-  * @return
 
-  *   An array keyed by format names containing an array with keys:
 
-  *   #title - the translated display name of the format
 
-  *   #module - the module that implements it.
 
-  *   #description - the translated description, please include links to docs that
 
-  *   give more info about the format.
 
-  *   #file - if a file is to be included for callbacks to work, give full path
 
-  *     here. This is optional.
 
-  *   #mime - to override the default text/plain mime type for the downloaded
 
-  *     file set this to the desired mime type string.  This is optional.
 
-  *   #settings_callback - the function name of the settings callback, this is a
 
-  *     function that takes two params $form and $form_state, and returns an
 
-  *     array of form elements to append to the $form['basic'] area.  The form
 
-  *     uses system_settings_form() so values will be automatically saved into
 
-  *     variables, but be sure your module deletes these variables upon
 
-  *     uninstall. This is optional.
 
-  *   #export_callback - the function name of the export callback, this is a
 
-  *     function that takes two params $nodes and $format, where $nodes is an array
 
-  *     of nodes and $format is the name of the format (in case same function used
 
-  *     for multiple formats).
 
-  *   #import_callback - the function name of the import callback, this is a
 
-  *     function that takes one parameter $code_string, and will be called of all
 
-  *     formats when an import is being performed, and should return:
 
-  *       The array of nodes, or nothing if code_string not handled by this
 
-  *       function.
 
-  *       If there is a problem with the supplied code return an array like so:
 
-  *         array(
 
-  *           'success' => FALSE,
 
-  *           'output' => array("error msg 1", "error msg 2", etc...),
 
-  *         )
 
-  *       Note: Do not use the t() function on error msgs, and don't mix the error
 
-  *       message with dynamic variables/content, at least not in the first message
 
-  *       so it can be translated properly and used as the main message.  See the
 
-  *       XML implementation for malformed XML imports for an example that combines
 
-  *       information for the user followed by generated errors from PHP.
 
-  */
 
- function hook_node_export_format_handlers() {
 
-   return array(
 
-     // Note: format_short_name should NOT contain the string 'node_export'.
 
-     // Example from DSV format.
 
-     'dsv' => array(
 
-       '#title' => t('DSV'),
 
-       '#module' => 'node_export',
 
-       '#file' => drupal_get_path('module', 'node_export') . '/formats/dsv.inc',
 
-       '#description' => t(
 
-         'Configurable <a href="!dsv">Delimiter-separated values</a> code. Export and import sites must be configured the same.',
 
-         array(
 
-           '!dsv' => 'http://en.wikipedia.org/wiki/Delimiter-separated_values'
 
-         )
 
-       ),
 
-       '#settings_callback' => 'node_export_dsv_settings',
 
-       '#export_callback' => 'node_export_dsv_export',
 
-       '#import_callback' => 'node_export_dsv_import',
 
-     ),
 
-   );
 
- }
 
 
  |