
Useful and interesting modules for Drupal 6.xx + Tips and Tricks (Part II)
Last time I started a small review of interesting modules, let's continue!
Admin Changes the interface for the administrator.
This is the best solution for admin pages that I have seen and tried.
Save & Edit - the button “save record and continue editing” is added to the form. Conveniently.
Submit Again - a module that allows you to add another one after saving the material.
iTweak Upload - change the upload form.
ImageCache Profiles - allows you to set presets for loading custom images (avatars).
Moderation - a module for moderating entries. Shows lists for moderators with a description of their actions.
Comment Moderation- moderation of comments.
User Relationships - allows you to create types of relationships between users, for example, friends , colleagues .
Frequently Asked Questions - Organization of frequently asked questions (FAQ) on the site.
Plugin Manager - module management. Anyone who likes the plugin update feature in Wordpress will appreciate this module!
Taxonomy Manager - provides a powerful interface for working with dictionaries.
Edit term - allows you to change the terms.
Taxonomy Menu - allows you to create a menu from the terms of the dictionary.
ImageField Tokens - change tokens for files uploaded through ImageField .
Simplenews - Organization of newsletters.
XML sitemap - Creates a sitemap.xml file.
Site verification - site verification in search engines (supported)
Modules for CCK (I think they don’t need to be introduced): Email Field , Link , Phone , Zipcode , Formatted Number CCK , Unique field , CCK Autocomplete , Money CCK field
the code must be placed in the template.php of your theme
We fasten the typograph for BuEditor from artlebedev
Part III →
Admin Changes the interface for the administrator.
This is the best solution for admin pages that I have seen and tried.
Save & Edit - the button “save record and continue editing” is added to the form. Conveniently.
Submit Again - a module that allows you to add another one after saving the material.
iTweak Upload - change the upload form.
ImageCache Profiles - allows you to set presets for loading custom images (avatars).
Moderation - a module for moderating entries. Shows lists for moderators with a description of their actions.
Comment Moderation- moderation of comments.
User Relationships - allows you to create types of relationships between users, for example, friends , colleagues .
Frequently Asked Questions - Organization of frequently asked questions (FAQ) on the site.
Plugin Manager - module management. Anyone who likes the plugin update feature in Wordpress will appreciate this module!
Taxonomy Manager - provides a powerful interface for working with dictionaries.
Edit term - allows you to change the terms.
Taxonomy Menu - allows you to create a menu from the terms of the dictionary.
ImageField Tokens - change tokens for files uploaded through ImageField .
Simplenews - Organization of newsletters.
XML sitemap - Creates a sitemap.xml file.
Site verification - site verification in search engines (supported)
Modules for CCK (I think they don’t need to be introduced): Email Field , Link , Phone , Zipcode , Formatted Number CCK , Unique field , CCK Autocomplete , Money CCK field
Useful Tips
Change "added ..."
the code must be placed in the template.php of your theme
//Форматирование в ноде
function ВАША_ТЕМА_node_submitted($node) {
return t('Posted by !username on @date', array(
'!username' => theme('username', $node),
'@date' => format_date($node->created, 'custom', 'd / M / Y- H:i')
));
}
//Форматирование в комментарие
function ВАША_ТЕМА_comment_submitted($comment) {
return t('Posted by !username on @date at about @time.', array(
'!username' => theme('username', $comment),
'@date' => format_date($comment->timestamp, 'custom', 'd / M / Y- H:i'),
'@time' => format_date($comment->timestamp, 'custom', 'H:i')
));
}
* This source code was highlighted with Source Code Highlighter.
We fasten the typograph for BuEditor from artlebedev
Part III →