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


PHP Propal::getDefaultCreateValueFor方法代碼示例

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


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

示例1: DolEditor

     print '<td colspan="3" class="maxwidthonsmartphone">';
     print $form->select_incoterms(!empty($soc->fk_incoterms) ? $soc->fk_incoterms : '', !empty($soc->location_incoterms) ? $soc->location_incoterms : '');
     print '</td></tr>';
 }
 // Template to use by default
 print '<tr>';
 print '<td>' . $langs->trans("DefaultModel") . '</td>';
 print '<td colspan="2">';
 $liste = ModelePDFPropales::liste_modeles($db);
 print $form->selectarray('model', $liste, $conf->global->PROPALE_ADDON_PDF_ODT_DEFAULT ? $conf->global->PROPALE_ADDON_PDF_ODT_DEFAULT : $conf->global->PROPALE_ADDON_PDF);
 print "</td></tr>";
 // Public note
 print '<tr>';
 print '<td class="border" valign="top">' . $langs->trans('NotePublic') . '</td>';
 print '<td valign="top" colspan="2">';
 $note_public = $object->getDefaultCreateValueFor('note_public', is_object($objectsrc) ? $objectsrc->note_public : null);
 $doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, '90%');
 print $doleditor->Create(1);
 // Private note
 if (empty($user->societe_id)) {
     print '<tr>';
     print '<td class="border" valign="top">' . $langs->trans('NotePrivate') . '</td>';
     print '<td valign="top" colspan="2">';
     $note_private = $object->getDefaultCreateValueFor('note_private', !empty($origin) && !empty($originid) && is_object($objectsrc) ? $objectsrc->note_private : null);
     $doleditor = new DolEditor('note_private', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, '90%');
     print $doleditor->Create(1);
     // print '<textarea name="note_private" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'.</textarea>
     print '</td></tr>';
 }
 // Other attributes
 $parameters = array('colspan' => ' colspan="3"');
開發者ID:Albertopf,項目名稱:prueba,代碼行數:31,代碼來源:propal.php


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