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


PHP CMbObject::loadRefsFiles方法代碼示例

本文整理匯總了PHP中CMbObject::loadRefsFiles方法的典型用法代碼示例。如果您正苦於以下問題:PHP CMbObject::loadRefsFiles方法的具體用法?PHP CMbObject::loadRefsFiles怎麽用?PHP CMbObject::loadRefsFiles使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CMbObject的用法示例。


在下文中一共展示了CMbObject::loadRefsFiles方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: loadRefsFiles

 /**
  * @see parent::loadRefsFiles()
  */
 function loadRefsFiles()
 {
     parent::loadRefsFiles();
     if (!$this->_docitems_from_consult) {
         if (!$this->_ref_consultation) {
             $this->loadRefConsultation();
         }
         $this->_ref_consultation->_docitems_from_dossier_anesth = true;
         $this->_ref_consultation->loadRefsFiles();
         $this->_nb_cancelled_files += $this->_ref_consultation->_nb_cancelled_files;
         $this->_nb_cancelled_docs += $this->_ref_consultation->_nb_cancelled_docs;
         $this->_ref_files = $this->_ref_files + $this->_ref_consultation->_ref_files;
     }
 }
開發者ID:fbone,項目名稱:mediboard4,代碼行數:17,代碼來源:CConsultAnesth.class.php

示例2: loadDocItemsByObject

 /**
  * Load files for on object
  *
  * @param CMbObject $object object to load the files
  *
  * @return array[][]
  */
 static function loadDocItemsByObject(CMbObject $object)
 {
     if (!$object->_ref_files) {
         $object->loadRefsFiles();
     }
     if (!$object->_ref_documents) {
         $object->loadRefsDocs();
     }
     //Création du tableau des catégorie pour l'affichage
     $affichageFile = array(array("name" => CAppUI::tr("CFilesCategory.none"), "items" => array()));
     foreach (CFilesCategory::listCatClass($object->_class) as $_cat) {
         $affichageFile[$_cat->_id] = array("name" => $_cat->nom, "items" => array());
     }
     //Ajout des fichiers dans le tableau
     foreach ($object->_ref_files as &$_file) {
         $cat_id = $_file->file_category_id ? $_file->file_category_id : 0;
         $affichageFile[$cat_id]["items"]["{$_file->file_name}-{$_file->_guid}"] =& $_file;
         if (!isset($affichageFile[$cat_id]["name"])) {
             $affichageFile[$cat_id]["name"] = '';
         }
     }
     //Ajout des document dans le tableau
     foreach ($object->_ref_documents as &$_doc) {
         $_doc->isLocked();
         $cat_id = $_doc->file_category_id ? $_doc->file_category_id : 0;
         $affichageFile[$cat_id]["items"]["{$_doc->nom}-{$_doc->_guid}"] =& $_doc;
         if (!isset($affichageFile[$cat_id]["name"])) {
             $affichageFile[$cat_id]["name"] = '';
         }
     }
     // Classement des Fichiers et des document par Ordre alphabétique
     foreach ($affichageFile as $keyFile => $currFile) {
         ksort($affichageFile[$keyFile]["items"]);
     }
     return $affichageFile;
 }
開發者ID:OpenXtrem,項目名稱:mediboard-test,代碼行數:43,代碼來源:CFile.class.php


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