| 1 |
quotes.module
|
| 2 |
README.txt
|
| 3 |
$Id: README.txt,v 1.6 2007/02/14 15:28:35 jhriggs Exp $
|
| 4 |
|
| 5 |
The quotes module allows users to maintain a list of quotations that
|
| 6 |
they find notable, humorous, famous, infamous, or otherwise worthy of
|
| 7 |
sharing with website visitors. The quotes can be displayed in any
|
| 8 |
number of administrator-defined blocks. These blocks will display
|
| 9 |
either a randomly-selected quote or the most recent quote based on the
|
| 10 |
restrictions of each block. Blocks can be configured to restrict to
|
| 11 |
certain nodes, roles, users, or categories.
|
| 12 |
|
| 13 |
The display of quotes is themeable using two functions,
|
| 14 |
theme_quotes_quote() which displays a single quote/author and
|
| 15 |
theme_quotes_page() which displays a list of quotes. The default
|
| 16 |
Implements theme_quotes_quote() uses two CSS classes to allow
|
| 17 |
you to control the display of quotes. The quote itself uses
|
| 18 |
"quotes-quote". The author/attribution uses "quotes-author".
|
| 19 |
|
| 20 |
Files
|
| 21 |
- quotes.module
|
| 22 |
the actual module (PHP source code)
|
| 23 |
|
| 24 |
- quotes.info
|
| 25 |
the module information file used by Drupal
|
| 26 |
|
| 27 |
- quotes.install
|
| 28 |
installation/upgrade functions (PHP source code)
|
| 29 |
|
| 30 |
- README.txt (this file)
|
| 31 |
general module information
|
| 32 |
|
| 33 |
- INSTALL.txt
|
| 34 |
installation/configuration instructions
|
| 35 |
|
| 36 |
- CREDITS.txt
|
| 37 |
information on those responsible for this module
|
| 38 |
|
| 39 |
- TODO.txt
|
| 40 |
feature requests and modification suggestions
|
| 41 |
|
| 42 |
- CHANGELOG.txt
|
| 43 |
change/release history for this module
|
| 44 |
|
| 45 |
- LICENSE.txt
|
| 46 |
the license (GNU General Public License) covering the usage,
|
| 47 |
modification, and distribution of this software and its
|
| 48 |
accompanying files
|