summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-08-28 15:29:34 +0000
committerDries Buytaert <dries@buytaert.net>2005-08-28 15:29:34 +0000
commitc9fc300b1f8fcb00de78aca77bc85d79f4bab5b1 (patch)
tree4979fc5272cebb1a9615a10e6f6435f65caab759 /modules/blog
parent494e5ab97cd9a5aa3de9b8db187be2f968a9c46d (diff)
downloadbrdo-c9fc300b1f8fcb00de78aca77bc85d79f4bab5b1.tar.gz
brdo-c9fc300b1f8fcb00de78aca77bc85d79f4bab5b1.tar.bz2
- Patch #29785 by Chx: multiple node types were broken so we refactored
part of the node system! If you have a module that implements node types, you'll have to udpate its CVS HEAD version. We replaced _node_name() and _node_types() by _node(). The new _node() hook let's you define one or more node types, including their names. The implementation of the _node() hook needs to: return array($type1 => array('name' => $name1, 'base' => $base1), $type2 => array('name' => $name2, 'base' => $base2)); where $type is the node type, $name is the human readable name of the type and $base is used instead of <hook> for <hook>_load, <hook>_view, etc. For example, the story module's node hook looks like this: function story_node() { return array('story' => array('name' => t('story'), 'base' => 'story')); } The page module's node hook module like: function page_node() { return array('page' => array('name' => t('page'), 'base' => 'page')); } However, more complex node modules like the project module and the flexinode module can use the 'base' parameter to specify a different base. The project module implements two node types, proejcts and issues, so it can do: function project_node() { return array( array('project_project' => array('name' => t('project'), 'base' => 'project'), array('project_issue' => array('name' => t('issue'), 'base' => 'project_issue')); } In the flexinode module's case there can only one base ... This hook will simplify the CCK, and will make it easy (or easier) to merge the story and page module. In addition, node_list() became node_get_types(). In addition, we created the following functions: node_get_name($type) and node_get_base($type).
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 4327c34db..3dbe76083 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -7,10 +7,10 @@
*/
/**
- * Implementation of hook_node_name().
+ * Implementation of hook_node().
*/
-function blog_node_name($node) {
- return t('personal blog entry');
+function blog_node() {
+ return array('blog' => array('name' => t('personal blog entry'), 'base' => 'blog'));
}
/**