#476 메뉴 설명 기능 구현

메뉴 항목마다 설명 항목을 추가합니다. `{$val1['desc']}` 와 같이 레이아웃에서 불러올 수 있습니다.
fontawesome 등을 쉽게 추가할 수 있게 해줍니다.
This commit is contained in:
YJSoft 2015-06-15 13:09:12 +09:00
parent dee87dcce8
commit 37cea6b1ce
8 changed files with 61 additions and 22 deletions

View file

@ -3,6 +3,7 @@
<column name="parent_srl" type="number" size="12" notnull="notnull" default="0" />
<column name="menu_srl" type="number" size="12" notnull="notnull" index="idx_menu_srl" />
<column name="name" type="text" />
<column name="desc" type="varchar" size="250" />
<column name="url" type="varchar" size="250" />
<column name="is_shortcut" type="char" size="1" default="N" />
<column name="open_window" type="char" size="1" default="N" />
@ -13,4 +14,4 @@
<column name="group_srls" type="text" />
<column name="listorder" type="number" size="11" default="0" index="idx_listorder" />
<column name="regdate" type="date" index="idx_regdate" />
</table>
</table>