CommonDBTM::post_updateItem PHP 메소드

post_updateItem() 공개 메소드

Actions done after the UPDATE of the item in the database
public post_updateItem ( $history = 1 ) : nothing
$history store changes history ? (default 1)
리턴 nothing
    function post_updateItem($history = 1)
    {
    }

Usage Example

 public function post_purgeItem($history = 1)
 {
     $changes[0] = '0';
     $changes[1] = '';
     $changes[2] = sprintf(__('%1$s deleted closing informations', 'moreticket'), getUserName(Session::getLoginUserID()));
     Log::history($this->fields['tickets_id'], 'Ticket', $changes, 0, Log::HISTORY_LOG_SIMPLE_MESSAGE);
     parent::post_updateItem();
 }
CommonDBTM