本文整理匯總了PHP中JModelForm::getItem方法的典型用法代碼示例。如果您正苦於以下問題:PHP JModelForm::getItem方法的具體用法?PHP JModelForm::getItem怎麽用?PHP JModelForm::getItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類JModelForm
的用法示例。
在下文中一共展示了JModelForm::getItem方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getItem
/**
* Method to get the record form.
*
* @param string $pk Private key.
*
* @since 2.2
* @return null
*/
public function getItem($pk = null)
{
if ($item = parent::getItem($pk)) {
// Do any procesing on fields here if needed
}
return $item;
}
示例2: getItem
/**
* Method to get a single record.
*
* @param integer $pk The id of the primary key.
*
* @return mixed $item Object on success, false on failure.
*/
public function getItem($pk = null)
{
if ($item = parent::getItem($pk)) {
if ($item->item_id) {
$item->item_id_name = $this->getautoname_DB($item->item_id, 'kart_items', 'item_id', 'name');
}
if ($item->user_id) {
$item->user_id_name = $this->getautoname_DB($item->user_id, 'users', 'id', 'name', 'id.block <> 1');
}
}
//print_r($item); die;
return $item;
}