After creating or loading a Content Item, various "get" and "set" methods are available.
"get" methods
Although JCckContent class supports method chaining, these methods return what you ask for (and not the instance).
Returns the value of the "author" property (i.e. the value of "created_by" for Joomla! Articles, or the value of "created_user_id" for Joomla! Categories, or...).
Returns an array with all properties and values of a the content item.
Returns an array with all properties and values of a specific table instance of the content item.
Returns the SEBLOD IDentifier of the content item (i.e. the primary key of the "core" table).
Returns the object of the content item or instance (i.e. "joomla_article", or "joomla_category", or any other object...).
Returns the value of the "parent" property (i.e the value of "catid" property for Joomla! Articles, or the value of "parent_id" property for Joomla! Categories, or...).
Returns the Primary Key of the content item (i.e the primary key of the "base" table).
Returns the value of a property.
Returns a Registry object of a property. Useful for any property storing multiple "sub-properties" in a JSON format.
Returns the value of a sub-property param1 from a JSON string {"param1":"value1","param2":"value2"}
Returns the table of the content item or instance (i.e. "#__content" for Joomla! Articles, or "#__categories" for Joomla! Categories, or...).
Returns the type of the content item (i.e. the Content Type).
"set" methods
As JCckContent class supports method chaining, these methods return the instance, so you can chain additional calls.
Sets the value of a property. This method only changes the value within the current instance BUT doesn't update the DB.