Basicly 당신이 할 때마다 호출 할 수있는 모델에 두 가지 방법이 필요합니다, 확인으로
function checkin()
{
if ($this->_id)
{
$item= & $this->getTable();
if(! $item->checkin($this->_id)) {
$this->setError($this->_db->getErrorMsg());
return false;
}
}
return false;
}
function checkout($uid = null)
{
if ($this->_id)
{
// Make sure we have a user id to checkout the article with
if (is_null($uid)) {
$user =& JFactory::getUser();
$uid = $user->get('id');
}
// Lets get to it and checkout the thing...
$item= & $this->getTable();
if(!$item->checkout($uid, $this->_id)) {
$this->setError($this->_db->getErrorMsg());
return false;
}
return true;
}
return false;
}
이 항목을 표시하려면 먼저 당신이 기본값 0 checked_out
라는 열이하는 모두의, 항목을 체크 아웃 한 시간을 저장하려면 checked_out_time
이 필요합니다. 도움이 되길 바랍니다.
감사합니다. di3sel. 그게 내가 원하는거야. – asciimo