class Blog - jcobban/Genealogy GitHub Wiki

class Blog

Up: Object-Oriented Access to Database Records

Source Code

This class is derived from Record to implement the logical interface to a record in the Blogs table (Blogs). Each entry in this table contains a rich text message associated with a resource within the site. An instance of class Blog can be associated with any record in any table which has a numeric primary key. In particular a message can be queued to a particular user by associating the message with the user’s entry in the table of Users by the ‘id’ field, see class User.

Fields

This record presents the following fields:

field name description synonyms
'bl_index' index 'index' or 'id' or 'blid'
'bl_datetime' date & time posted 'datetime'
'bl_username' username 'username'
'bl_table' table name 'table'
'bl_keyname' key field name 'keyname'
'bl_keyvalue' key value 'keyvalue'
'bl_text' text 'text'
'blogname' blog name 'title' or 'subject'

Table of Contents

Next: class Census