我有实现 hook_nodeapi() 的 drupal 6 模块。我必须将其转换为 drupal 7。需要建议。任何帮助都会很棒。
- “alter”:$node->content 数组已被渲染,因此节点主体或预告片被过滤,现在包含 HTML。仅当需要文本替换、过滤或其他原始文本操作时才应使用此操作。
- “delete”:正在删除节点。
- “delete revision”:节点的版本被删除。您可以删除与该修订相关的数据。
- “插入”:节点刚刚被创建(插入到数据库中)。
- “load”:节点即将从数据库中加载。这个钩子此时可以用来加载额外的数据。
- “准备”:节点即将显示在添加/编辑表单上。
- “准备翻译”:正在克隆节点以进行翻译。从 $node->translation_source 加载附加数据或复制值。
- “print”:准备一个节点视图进行打印。用于 book_module 中的打印机友好视图
- “rss item”:生成一个 RSS 提要。该模块可以返回要添加到为此节点生成的 RSS 项的属性。有关示例,请参见 comment_nodeapi() 和 upload_nodeapi()。还可以修改传递的 $node 以向提要项添加或删除内容。
- “搜索结果”:节点显示为搜索结果。如果您想在结果中显示额外信息,请将其返回。
- “presave”:节点通过验证,即将被保存。模块可以使用它在节点保存到数据库之前对其进行更改。
- “update”:该节点刚刚在数据库中更新。
- “更新索引”:正在索引节点。如果您希望通过nodeapi“视图”对其他信息进行索引,那么您应该在此处返回它。
- “验证”:用户刚刚完成编辑节点并尝试预览或提交。这个钩子可以用来检查节点数据。应使用 form_set_error() 设置错误。
"view":渲染前正在组装节点内容。该模块可以在渲染之前添加元素 $node->content 。这个钩子会在 hook_view() 之后被调用。$node->content 的格式与 Forms API 使用的格式相同。
function px_nodeapi(&$node, $op, $teaser, $page) { // px_logger(PX_INFO, 'nodeapi', $op, $node); switch ($op) { case 'delete_revision': switch ($node->type) { case 'case': case 'case_slide': case 'case_fov': px_case_delete_revision($node); break; default: break; } break; case 'insert': // apply uploadpath logic to images case 'update': if ($node->type == 'image') { //px_logger(PX_INFO, 'uploadpath', $op, $node); if (isset($node->images) && user_access('upload files') && $node->new_file == 1) { px_set_tokens($node); foreach ($node->images as $size => $src_file) { if (!isset($src_file) or empty($src_file)) { continue; } $fid = db_result(db_query("SELECT fid FROM {image} WHERE nid=%d and image_size='%s' LIMIT 1", $node->nid, $size)); $base_file_name = basename($src_file); //px_logger(PX_INFO, 'uploadpath', '$base_file_name='.$base_file_name); //get the token path pattern $pattern = variable_get('uploadpath_prefix_'.$node->type, 'px/users/[case-owner]/[case-handle]/images'); if(variable_get('uploadpath_clean_filenames', false)){ //get path info of file $file_info = pathinfo($src_file); px_logger(PX_INFO, 'uploadpath', '$file_info=', $file_info); /*crop lowercase node title to max replace anything except numbers and letters with underscore add 10 digit unique id and file extension*/ $file_name = substr($file_info['filename'], 0, 50); //replace anything except numbers and letters with an underscore //$file_name = preg_replace("/([^a-z0-9])/", '_', strtolower($file_name)); $file_name = preg_replace("/([^a-zA-Z0-9])/", '_', $file_name); //replace multiple underscores with a single one $file_name = preg_replace("/_+/", '_', $file_name); //$file_name .= '_'. substr(uniqid(rand(), true),0,5). '.'. $file_info['extension']; $file_name .= '.' . $file_info['extension']; // apply new, prefixed file name by token replacing the path pattern $file_path = token_replace($pattern . '/', 'node', $node); $file_name = $file_path . $file_name; }else{ // apply new, prefixed file name by token replacing the path pattern $file_name = str_replace(array(' ', "\n", "\t"), '_', token_replace($pattern . '/', 'node', $node)) . $base_file_name; } //px_logger(PX_INFO, 'uploadpath', 'new path is '.$file_name); // SECURITY NOTE: // Tokens include user supplied information and could provide an attack vector. // The current method of creating directories prevents the use of .. or other malicious // paths, but future developers should keep this in mind when modifying the following code // Create the directory if it doesn't exist yet. $dirs = explode('/', dirname($file_name)); $directory = file_directory_path(); $file_name = $directory.'/'.$file_name; while (count($dirs)) { $directory .= '/' . array_shift($dirs); file_check_directory($directory, FILE_CREATE_DIRECTORY); } px_logger(PX_INFO, 'uploadpath', 'about to move file from '.$src_file.' to '.$file_name); //move file to new subfolder if (file_move($src_file, $file_name, FILE_EXISTS_RENAME)) { //update node file array with new path, if needed $node->images[$size] = $file_name; // update file record in database db_query("UPDATE {files} SET filepath = '%s' WHERE fid = %d", $file_name, $fid); } //px_logger(PX_INFO, 'uploadpath', 'node', $node); } } } break; case 'presave': // if ($node->type == 'case_slide') { // $node->title = $test_type; // } break; case 'view': if (($node->type == 'case' or $node->type == 'case_slide' or $node->type == 'case_fov') and $teaser and !$node->iid) { $node->content['image_attach'] = array( '#value' => theme("image_attach_teaser", $node), '#weight' => variable_get("image_attach_weight_teaser_{$node->type}", 0), ); } if ($node->type == 'group' and !$teaser) { $num_members = db_result(db_query('SELECT COUNT(*) FROM {og_uid} WHERE is_active = 1 and nid = %d', $node->nid)); $num_cases = db_result(db_query('SELECT COUNT(*) FROM {og_ancestry} WHERE group_nid = %d', $node->nid)); unset($node->content['og_mission']); $case_user = user_load(array('uid' => $node->uid)); $node->content['group_details'] = array( '#value' => ' <div id="group_desc"> <!--div class="value">'.$node->og_description.'</div--> </div>', '#weight' => -10, ); if (!empty($node->body)) { $node->content['group_details']['#value'] = '<div id="group_body">'.$node->body.'</div>' . $node->content['group_details']['#value']; } $node->content['group_details']['#value'] = '<div id="group_created">Created on '.px_case_format_date($node->created).' by '.theme('username', $case_user).'</div>' . $node->content['group_details']['#value']; $group_members = '<ul>'; $ml = 5; $result = db_query('SELECT uid, created FROM {og_uid} WHERE is_active = 1 and nid = %d ORDER BY created DESC LIMIT '.$ml, $node->nid); while ($row = db_fetch_array($result)) { $member = user_load(array('uid' => $row['uid'])); $group_members .= '<li>'.theme('username', $member).'</li>'; } $group_members .= '</ul>'; $node->content['group_members'] = array( '#value' => ' <div id="group_recent_members"> <span class="stats"><a href="/og/users/'.$node->nid.'">All members ('.$num_members.')</a></span> <span class="label">Recent members</span> <div class="value">'.$group_members.'</div> </div>', '#weight' => -8, ); $node->content['view']['#value'] = ' <div id="group_recent_cases"> <span class="stats"><a href="/node/'.$node->nid.'/cases">All cases ('.$num_cases.')</a></span> <span class="label">Recent cases</span> <div class="value">'.$node->content['view']['#value'].'</div> </div>'; // px_logger(PX_INFO, 'nodeapi', 'node is', $node); } default: // px_logger(PX_INFO, 'nodeapi', 'op is '.$op.' type is '.$node->type); break; }
}