本文整理汇总了PHP中JModelForm::checkin方法的典型用法代码示例。如果您正苦于以下问题:PHP JModelForm::checkin方法的具体用法?PHP JModelForm::checkin怎么用?PHP JModelForm::checkin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JModelForm
的用法示例。
在下文中一共展示了JModelForm::checkin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkin
/**
* Method override to check-in a record or an array of record
*
* @param mixed $pks The ID of the primary key or an array of IDs
*
* @return mixed Boolean false if there is an error, otherwise the count of records checked in.
*
* @since 12.2
*/
public function checkin($pks = array())
{
$pks = (array) $pks;
$table = $this->getTable();
$count = 0;
if (empty($pks)) {
$pks = array((int) $this->getState($this->getName() . '.id'));
}
// Check in all items.
foreach ($pks as $pk) {
if ($table->load($pk)) {
if ($table->checked_out > 0) {
if (!parent::checkin($pk)) {
return false;
}
$count++;
}
} else {
$this->setError($table->getError());
return false;
}
}
return $count;
}
示例2: checkin
/**
* Method to checkin a row.
*
* @param integer The ID of the primary key.
*
* @return boolean
*/
public function checkin($pk = null)
{
// Initialise variables.
$pk = !empty($pk) ? $pk : (int) $this->getState('package.id');
return parent::checkin($pk);
}