Dla nas post znaczy post (na forum). Dla nich zapewne data ostatniego dodania (post) treści w systemie.
Świadczy o tym, że to pole jest aktualizowane w tej metodzie:
/**
* Create generic object
*
* @param \IPS\Member $author The author
* @param string|NULL $ipAddress The IP address
* @param \IPS\DateTime $time The time
* @param \IPS\Node\Model|NULL $container Container (e.g. forum), if appropriate
* @param bool|NULL $hidden Hidden? (NULL to work our automatically)
* @return static
*/
public static function createItem( \IPS\Member $author, $ipAddress, \IPS\DateTime $time, \IPS\Node\Model $container = NULL, $hidden=NULL )
{
/* Update member's last post */
if( $obj->author()->member_id )
{
$obj->author()->member_last_post = time();
$obj->author()->save();
}
/* Return */
return $obj;
Nic nie stoi na przeszkodzie byś sobie napisał moda który by dodawał nowe pole do tabeli z użytkownikami i się aktualizowało tylko po dodaniu konkretnego typu zawartości.