Difference between revisions of "Drupal Care Package"
From Stadm
Jump to navigationJump to searchLine 2: | Line 2: | ||
This care package collects some useful resources either created by previous assistants or from the Internet. | This care package collects some useful resources either created by previous assistants or from the Internet. | ||
− | == Adding & editing | + | == Adding & editing contents == |
− | Adding & editing | + | Adding & editing contents are the most basic uses of Drupal |
* [https://www.youtube.com/watch?v=D93yOJrMopw Video tutorial] | * [https://www.youtube.com/watch?v=D93yOJrMopw Video tutorial] | ||
* [https://www.drupal.org/node/1234564 Adding content on Drupal 7] | * [https://www.drupal.org/node/1234564 Adding content on Drupal 7] | ||
Line 12: | Line 12: | ||
* [https://www.drupal.org/node/306792 Create custom content type] - This tutorial lists the procedures you need to create a custom content type. | * [https://www.drupal.org/node/306792 Create custom content type] - This tutorial lists the procedures you need to create a custom content type. | ||
* [[Drupal_documentation|Creating News Items and a News List]] - An example of creating a "News" custom content type | * [[Drupal_documentation|Creating News Items and a News List]] - An example of creating a "News" custom content type | ||
+ | |||
+ | == Show content in a page in the way you want == | ||
+ | When you have your own content type, the next step is to show entries of the content type on your website. Drupal module "View" is a handy tool to manage this issue. | ||
+ | |||
+ | * [https://www.acquia.com/blog/totally-beginner-tutorial-views-drupal-7 A totally beginner tutorial to Views for Drupal 7] | ||
== Organic Groups == | == Organic Groups == | ||
* [[Organic_Groups|Organic Groups]] | * [[Organic_Groups|Organic Groups]] |
Revision as of 15:05, 13 January 2015
Contents
Overview
This care package collects some useful resources either created by previous assistants or from the Internet.
Adding & editing contents
Adding & editing contents are the most basic uses of Drupal
Create your own content types
Sometimes the original content types cannot fulfill your all requirements, you may want a new content type to reach your expectations. For example, you may want to create a FAQ page, which should contains several FAQ entries. Thus you can create a new custom content type "FAQ", which has "Question" and "Answer" fields instead of "Title" and "Body".
- Create custom content type - This tutorial lists the procedures you need to create a custom content type.
- Creating News Items and a News List - An example of creating a "News" custom content type
Show content in a page in the way you want
When you have your own content type, the next step is to show entries of the content type on your website. Drupal module "View" is a handy tool to manage this issue.