Documentation
¶
Index ¶
- type Article
- func (c *Article) ContentType() string
- func (c *Article) Definition(language ...string) definition.ContentType
- func (c *Article) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Article) GetLocation() *contenttype.Location
- func (c *Article) GetName() string
- func (c *Article) IdentifierList() []string
- func (c *Article) SetValue(identifier string, value interface{}) error
- func (c *Article) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Article) StoreWithLocation()
- func (c *Article) TableName() string
- func (c *Article) ToDBValues() map[string]interface{}
- func (c *Article) ToMap() map[string]interface{}
- func (c *Article) Value(identifier string) interface{}
- type File
- func (c *File) ContentType() string
- func (c *File) Definition(language ...string) definition.ContentType
- func (c *File) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *File) GetLocation() *contenttype.Location
- func (c *File) GetName() string
- func (c *File) IdentifierList() []string
- func (c *File) SetValue(identifier string, value interface{}) error
- func (c *File) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *File) StoreWithLocation()
- func (c *File) TableName() string
- func (c *File) ToDBValues() map[string]interface{}
- func (c *File) ToMap() map[string]interface{}
- func (c *File) Value(identifier string) interface{}
- type Folder
- func (c *Folder) ContentType() string
- func (c *Folder) Definition(language ...string) definition.ContentType
- func (c *Folder) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Folder) GetLocation() *contenttype.Location
- func (c *Folder) GetName() string
- func (c *Folder) IdentifierList() []string
- func (c *Folder) SetValue(identifier string, value interface{}) error
- func (c *Folder) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Folder) StoreWithLocation()
- func (c *Folder) TableName() string
- func (c *Folder) ToDBValues() map[string]interface{}
- func (c *Folder) ToMap() map[string]interface{}
- func (c *Folder) Value(identifier string) interface{}
- type Image
- func (c *Image) ContentType() string
- func (c *Image) Definition(language ...string) definition.ContentType
- func (c *Image) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Image) GetLocation() *contenttype.Location
- func (c *Image) GetName() string
- func (c *Image) IdentifierList() []string
- func (c *Image) SetValue(identifier string, value interface{}) error
- func (c *Image) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Image) StoreWithLocation()
- func (c *Image) TableName() string
- func (c *Image) ToDBValues() map[string]interface{}
- func (c *Image) ToMap() map[string]interface{}
- func (c *Image) Value(identifier string) interface{}
- type Role
- func (c *Role) ContentType() string
- func (c *Role) Definition(language ...string) definition.ContentType
- func (c *Role) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Role) GetLocation() *contenttype.Location
- func (c *Role) GetName() string
- func (c *Role) IdentifierList() []string
- func (c *Role) SetValue(identifier string, value interface{}) error
- func (c *Role) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Role) StoreWithLocation()
- func (c *Role) TableName() string
- func (c *Role) ToDBValues() map[string]interface{}
- func (c *Role) ToMap() map[string]interface{}
- func (c *Role) Value(identifier string) interface{}
- type User
- func (c *User) ContentType() string
- func (c *User) Definition(language ...string) definition.ContentType
- func (c *User) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *User) GetLocation() *contenttype.Location
- func (c *User) GetName() string
- func (c *User) IdentifierList() []string
- func (c *User) SetValue(identifier string, value interface{}) error
- func (c *User) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *User) StoreWithLocation()
- func (c *User) TableName() string
- func (c *User) ToDBValues() map[string]interface{}
- func (c *User) ToMap() map[string]interface{}
- func (c *User) Value(identifier string) interface{}
- type Usergroup
- func (c *Usergroup) ContentType() string
- func (c *Usergroup) Definition(language ...string) definition.ContentType
- func (c *Usergroup) Delete(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Usergroup) GetLocation() *contenttype.Location
- func (c *Usergroup) GetName() string
- func (c *Usergroup) IdentifierList() []string
- func (c *Usergroup) SetValue(identifier string, value interface{}) error
- func (c *Usergroup) Store(ctx context.Context, transaction ...*sql.Tx) error
- func (c *Usergroup) StoreWithLocation()
- func (c *Usergroup) TableName() string
- func (c *Usergroup) ToDBValues() map[string]interface{}
- func (c *Usergroup) ToMap() map[string]interface{}
- func (c *Usergroup) Value(identifier string) interface{}
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Article ¶
type Article struct { contenttype.ContentCommon `boil:",bind"` Body fieldtype.RichText `boil:"body" json:"body" toml:"body" yaml:"body"` Coverimage fieldtype.Text `boil:"coverimage" json:"coverimage" toml:"coverimage" yaml:"coverimage"` Editors fieldtype.Text `boil:"editors" json:"editors" toml:"editors" yaml:"editors"` Summary fieldtype.RichText `boil:"summary" json:"summary" toml:"summary" yaml:"summary"` Title fieldtype.Text `boil:"title" json:"title" toml:"title" yaml:"title"` contenttype.Location `boil:"location,bind"` }
func (*Article) ContentType ¶
func (*Article) Definition ¶
func (c *Article) Definition(language ...string) definition.ContentType
func (*Article) GetLocation ¶
func (c *Article) GetLocation() *contenttype.Location
func (*Article) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*Article) StoreWithLocation ¶
func (c *Article) StoreWithLocation()
func (*Article) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)
type File ¶
type File struct { contenttype.ContentEntity `boil:",bind"` Filetype fieldtype.Text `boil:"filetype" json:"filetype" toml:"filetype" yaml:"filetype"` Path fieldtype.Text `boil:"path" json:"path" toml:"path" yaml:"path"` Title fieldtype.Text `boil:"title" json:"title" toml:"title" yaml:"title"` }
func (*File) ContentType ¶
func (*File) Definition ¶
func (c *File) Definition(language ...string) definition.ContentType
func (*File) GetLocation ¶
func (c *File) GetLocation() *contenttype.Location
func (*File) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*File) StoreWithLocation ¶
func (c *File) StoreWithLocation()
func (*File) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)
type Folder ¶
type Folder struct { contenttype.ContentCommon `boil:",bind"` FolderType fieldtype.Text `boil:"folder_type" json:"folder_type" toml:"folder_type" yaml:"folder_type"` Summary fieldtype.RichText `boil:"summary" json:"summary" toml:"summary" yaml:"summary"` Title fieldtype.Text `boil:"title" json:"title" toml:"title" yaml:"title"` contenttype.Location `boil:"location,bind"` }
func (*Folder) ContentType ¶
func (*Folder) Definition ¶
func (c *Folder) Definition(language ...string) definition.ContentType
func (*Folder) GetLocation ¶
func (c *Folder) GetLocation() *contenttype.Location
func (*Folder) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*Folder) StoreWithLocation ¶
func (c *Folder) StoreWithLocation()
func (*Folder) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)
type Image ¶
type Image struct { contenttype.ContentEntity `boil:",bind"` Imagetype string `boil:"imagetype" json:"imagetype" toml:"imagetype" yaml:"imagetype"` ParentId int `boil:"parent_id" json:"parent_id" toml:"parent_id" yaml:"parent_id"` Path fieldtype.Text `boil:"path" json:"path" toml:"path" yaml:"path"` Title fieldtype.Text `boil:"title" json:"title" toml:"title" yaml:"title"` }
func (*Image) ContentType ¶
func (*Image) Definition ¶
func (c *Image) Definition(language ...string) definition.ContentType
func (*Image) GetLocation ¶
func (c *Image) GetLocation() *contenttype.Location
func (*Image) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*Image) StoreWithLocation ¶
func (c *Image) StoreWithLocation()
func (*Image) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)
type Role ¶
type Role struct { contenttype.ContentCommon `boil:",bind"` Identifier fieldtype.Text `boil:"identifier" json:"identifier" toml:"identifier" yaml:"identifier"` Summary fieldtype.RichText `boil:"summary" json:"summary" toml:"summary" yaml:"summary"` Title fieldtype.Text `boil:"title" json:"title" toml:"title" yaml:"title"` contenttype.Location `boil:"location,bind"` }
func (*Role) ContentType ¶
func (*Role) Definition ¶
func (c *Role) Definition(language ...string) definition.ContentType
func (*Role) GetLocation ¶
func (c *Role) GetLocation() *contenttype.Location
func (*Role) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*Role) StoreWithLocation ¶
func (c *Role) StoreWithLocation()
func (*Role) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)
type User ¶
type User struct { contenttype.ContentCommon `boil:",bind"` Email fieldtype.Text `boil:"email" json:"email" toml:"email" yaml:"email"` Firstname fieldtype.Text `boil:"firstname" json:"firstname" toml:"firstname" yaml:"firstname"` Lastname fieldtype.Text `boil:"lastname" json:"lastname" toml:"lastname" yaml:"lastname"` Login fieldtype.Text `boil:"login" json:"login" toml:"login" yaml:"login"` Password fieldtype.Password `boil:"password" json:"-" toml:"password" yaml:"password"` contenttype.Location `boil:"location,bind"` }
func (*User) ContentType ¶
func (*User) Definition ¶
func (c *User) Definition(language ...string) definition.ContentType
func (*User) GetLocation ¶
func (c *User) GetLocation() *contenttype.Location
func (*User) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*User) StoreWithLocation ¶
func (c *User) StoreWithLocation()
func (*User) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)
type Usergroup ¶
type Usergroup struct { contenttype.ContentCommon `boil:",bind"` Summary fieldtype.RichText `boil:"summary" json:"summary" toml:"summary" yaml:"summary"` Title fieldtype.Text `boil:"title" json:"title" toml:"title" yaml:"title"` contenttype.Location `boil:"location,bind"` }
func (*Usergroup) ContentType ¶
func (*Usergroup) Definition ¶
func (c *Usergroup) Definition(language ...string) definition.ContentType
func (*Usergroup) GetLocation ¶
func (c *Usergroup) GetLocation() *contenttype.Location
func (*Usergroup) IdentifierList ¶
Get identifier list of fields(NOT including data_fields )
func (*Usergroup) StoreWithLocation ¶
func (c *Usergroup) StoreWithLocation()
func (*Usergroup) ToDBValues ¶
Get map of the all fields(including data_fields) todo: cache this? (then you need a reload?)