当前位置: 首页>>代码示例>>PHP>>正文


PHP JModelForm::checkin方法代码示例

本文整理汇总了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;
 }
开发者ID:educakanchay,项目名称:kanchay,代码行数:33,代码来源:admin.php

示例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);
 }
开发者ID:svenbluege,项目名称:com_localise,代码行数:13,代码来源:package.php


注:本文中的JModelForm::checkin方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。