Links Module
링크 모듈은 다른 페이지나 사이트로 가는 아이템이나 페이지 링크의 리스트를 보여 줍니다. 여러분들은 링크나 링크에 대한 설명 등을 수정해서 사용 하실 수 있습니다.
Configuration
링크모듈의 display 에 영향을 줄 수 있는 몇가지 configuration 값들이 있습니다.
display_type - home module 과 비슷합니다. 리스트나 스프링 보드를 사용하실 수 있습니다.
Strings
description - 이 값은 리스트가 보일 때 위에 보일 스트링입니다.
description_footer - 이 값은 리스트가 보일 때 아래에 보일 스트링입니다.
Links
Links are editing in the links.ini configuration file. Each link is represented by a configuration section. Within each section, there are 3 possible keys:
링크들은 links.ini configuration file에서 편집합니다. 각각의 링크는 configuration
section으로 나눠 집니다.
- title - The title of the link
- url - The url of the link
- icon - a optional icon that is displayed in the springboard display type. These files should be placed in the SITE_DIR/themes/default/modules/links/images/compliant folder.
[0] title = "This is link 1" url = "http://example.com/urlforlink1" icon = "link1_icon.png" [1] title = "This is link 2" url = "http://example.com/urlforlink2" icon = "" ; link 2 does not have an icon [2] title = "This is link 3" url = "http://example.com/urlforlink3" icon = "link3_icon.png"
Creating groups of links
- NOTE - Creation of link groups is not supported in the admin console at this time.
비슷한 링크들을 하나의 카테고리로 묶기 위해 group을 만들 수 있습니다. 아래 스텝들을 따라 하시면 됩니다.
- If it does not exist, create a file named SITE_DIR/config/links/links-groups.ini
- Add a section to links-groups.ini with a short name of your group. This should be a lowercase alpha numeric value without spaces or special characters
- This section should contain a “title” option that represents the title of the group. Optionally you can include a description value that will show at the top of the links list for the group. You can also include a display_type to include a different link display type than the main link list.
- Create a file named SITE_DIR/config/people/links-groupname.ini where groupname is the short name of the group you created in links-groups.ini. This file should be formatted like links.ini with each entry being a numerically indexed section
- To use this group, assign it to a entry in links.ini. Do not include a url, but rather add a value group with a value of the short name of the group. You can optionally add a title that will be used instead of the group title indicated in links-groups.ini
SITE_DIR/config/people/links-groups.ini에 대한 예제 파일 입니다. 각 그룹은 title을 포함한 섹션입니다. (옵션으로 description 이 있습니다. 원하는 만큼의 그룹을 만들 수 있습니다.
[admissions] title = "Admissions"
SITE_DIR/config/people/contacts-admissions.ini. 아래는 admissions group에 대한 샘플 파일입니다. contacts.ini file과 비슷한 format 입니다. :
[0] title = "Admissions Main Number" subtitle = "(617-555-0001)" url = "tel:6175550001" class = "phone" [1] title = "Admissions Hotline" subtitle = "(617-555-0002)" url = "tel:6175550002" class = "phone"
SITE_DIR/config/people/contacts.ini. Include a group value to show a group, do not include a url value:
[0] title = "Static Entry 1" subtitle = "(617-555-0001)" url = "tel:6175550001" class = "phone" [1] title = "Admissions" group = "admissions"
========= o ============ o ========== o ========== o ================
이 부분은 Tutorial 이 잘 못 되었네요.
Links 모듈 설명하다가 갑자기 People 모듈로 건너 뛰었습니다.
저 위에 이미지 다음 부터는 people 모듈 관련 내용입니다.
Kurogo 쪽에 얘기해야겠어요... ^^;
'WEB_APP > Kurogo' 카테고리의 다른 글
AppQ - 쿠로고 웹 앱을 native app (iOS, Android) 으로 만들기 (0) | 2012.10.16 |
---|---|
Kurogo Tutorial 24 - People Module - (0) | 2012.10.10 |
Kurogo Tutorial 22 - Content Module - (0) | 2012.10.10 |
Database Authentication (0) | 2012.09.12 |
Authentication (0) | 2012.09.06 |
Flat File Authentication (0) | 2012.09.06 |
Access Control and Authorization (0) | 2012.09.06 |
Kurogo Tutorial 21 - Emergency Module - (0) | 2012.07.12 |
Kurogo Tutorial 20 - Module Interaction - (0) | 2012.06.13 |
Kurogo Tutorial 19 - The Kurogo Object - (0) | 2012.06.12 |