當前位置: 首頁>>代碼示例>>PHP>>正文


PHP JModelForm::getItem方法代碼示例

本文整理匯總了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;
 }
開發者ID:BetterBetterBetter,項目名稱:B3App,代碼行數:15,代碼來源:zoneform.php

示例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;
 }
開發者ID:BetterBetterBetter,項目名稱:B3App,代碼行數:20,代碼來源:couponform.php


注:本文中的JModelForm::getItem方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。