| 1 |
********************************************************************
|
| 2 |
D R U P A L M O D U L E
|
| 3 |
********************************************************************
|
| 4 |
Name: contento module
|
| 5 |
Author: Jose A. Reyero
|
| 6 |
Email: drupal at reyero dot net
|
| 7 |
|
| 8 |
OVERVIEW:
|
| 9 |
=========
|
| 10 |
This module will allow any number of new simple, story like, content -node- types.
|
| 11 |
It can be used to define completely new content types or as a drop-in replacement for content types defined by other modules.
|
| 12 |
|
| 13 |
This is completely based on JonBob's CCK and Negiesy Karoly -chx- previous work, which means all of the ideas and most of the code have been just 'copied&pasted'.
|
| 14 |
And also, on this thread, http://drupal.org/node/62340 [Pave the way for CCK].
|
| 15 |
|
| 16 |
INSTALLATION:
|
| 17 |
============
|
| 18 |
Run the database script provided.
|
| 19 |
Enable the module.
|
| 20 |
|
| 21 |
Define new content types in administer>settings>content-types. A few new permissions will be created for each content type.
|
| 22 |
Set the right permissions for them in administer>access control.
|
| 23 |
Use them as any other simple node type.
|
| 24 |
|
| 25 |
To use this module as a replacement to handle other node types, disable the old module, and define a new content type with the right 'system name'.
|
| 26 |
The 'contento' module will handle then nodes of that type. Don't forget to redefine the permissions.
|
| 27 |
|
| 28 |
NOTES:
|
| 29 |
======
|
| 30 |
The idea of this module is to be kind of 'transitional' tool, and implement some of the features that hopefully will be in the next Drupal version.
|
| 31 |
|
| 32 |
The name is just a try to avoid naming clashes with other modules. And it sounds good in Spanish ;-)
|
| 33 |
|
| 34 |
This is a simple lightweight module and I don't have the intention to extend it. If you want something more powerful, try Flexinode or CCK.
|
| 35 |
|
| 36 |
|