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