|
@@ -1,8 +1,6 @@
|
|
|
package fetdata
|
|
|
|
|
|
import (
|
|
|
- "html/template"
|
|
|
-
|
|
|
"golang-fave/engine/wrapper"
|
|
|
"golang-fave/utils"
|
|
|
)
|
|
@@ -28,45 +26,3 @@ func (this *FERData) init() *FERData {
|
|
|
}
|
|
|
return this
|
|
|
}
|
|
|
-
|
|
|
-func (this *FERData) MetaTitle() string {
|
|
|
- if this.Wrap.CurrModule == "index" {
|
|
|
- return this.DataRow.(*utils.MySql_page).A_meta_title
|
|
|
- }
|
|
|
- return ""
|
|
|
-}
|
|
|
-
|
|
|
-func (this *FERData) MetaKeywords() string {
|
|
|
- if this.Wrap.CurrModule == "index" {
|
|
|
- return this.DataRow.(*utils.MySql_page).A_meta_keywords
|
|
|
- }
|
|
|
- return ""
|
|
|
-}
|
|
|
-
|
|
|
-func (this *FERData) MetaDescription() string {
|
|
|
- if this.Wrap.CurrModule == "index" {
|
|
|
- return this.DataRow.(*utils.MySql_page).A_meta_description
|
|
|
- }
|
|
|
- return ""
|
|
|
-}
|
|
|
-
|
|
|
-func (this *FERData) Name() string {
|
|
|
- if this.Wrap.CurrModule == "index" {
|
|
|
- return this.DataRow.(*utils.MySql_page).A_name
|
|
|
- }
|
|
|
- return ""
|
|
|
-}
|
|
|
-
|
|
|
-func (this *FERData) Alias() string {
|
|
|
- if this.Wrap.CurrModule == "index" {
|
|
|
- return this.DataRow.(*utils.MySql_page).A_alias
|
|
|
- }
|
|
|
- return ""
|
|
|
-}
|
|
|
-
|
|
|
-func (this *FERData) Content() template.HTML {
|
|
|
- if this.Wrap.CurrModule == "index" {
|
|
|
- return template.HTML(this.DataRow.(*utils.MySql_page).A_content)
|
|
|
- }
|
|
|
- return template.HTML("")
|
|
|
-}
|